Edit: Problem solved thanks to Merlin, who suggested:
You could always zip the entire directory structure, then unzip to a location without restoring the paths. This would essentially flatten your entire directory structure to a single level.
Just why a man of such brilliance and good taste would be hanging out here will remain one of life's little mysteries.
My thanks to everyone else for their help, as it is truly appreciated.
I have a directory e:\foo, and under that I have many subdirectories:
e:\foo\foo_a
e:\foo\foo_b
e:\foo\foo_c
e:\foo\foo_d
e:\foo\foo_e
and under those, many other subdirectories:
e:\foo\foo_a\foo_1
e:\foo\foo_c\foo_2
e:\foo\foo_e\foo_3
and at the end of each tree there may be a file:
e:\foo\foo_a\foo_1\foo-file1.xxx
e:\foo\foo_b\foo-file2.dox
e:\foo\foo_c\foo_2\foo-file6.crp
e:\foo\foo_d\foo-file7.asc
e:\foo\foo_e\foo_3\foo-file99.099
I want a utility to navigate the tree, and when it finds a file I want it to copy that file to a single directory, such as:
e:\MyCollectedFiles
thus putting all the files in one place and eliminating this tree. I've looked and haven't found anything except sites offering free spyware.
Is there such a utility anywhere?