in reply to Re: Finding files in a directory tree from and array of file names
in thread Finding files in a directory tree from and array of file names

As long as you've got unique filenames across all your dictories...

Since you're no longer storing the path name, subdir1/file.htm and subdir2/file.htm will both be stored simply as file.htm. When you find a file called file.htm below the target directory, it will appear to match both of these.

This isn't necessarilly a problem, as long as you're aware of the possibility.

  • Comment on Re: Re: Finding files in a directory tree from and array of file names