I am trying to use File::Find::prune so that I cut off from recursive descent certain
directories.However,when in the "wanted" function I reach the directory which I don't want to
recurse into I set File::Find::prune=1 and afterwards no subdirectories of it are used in the search.
But I don't want any of the files in that directory to be traversed.
I am seeing that altough I set prune to 1 the files in that directory(not its subdirectories,just the
directory) are still traversed.