czqq wrote in
Actually nothing quite that interesting. I've downloaded and collected
a great number of jpgs, gifs, etc, that are textures or backgrounds,
or skins, etc. (For 3D modeling, web page design, etc). As I look
about my hard-drive, I see that I have them scattered everywhere
because I'm sloppy when downloading. Just wanted a quick, easy
automated way to move files into one directory. I used mp3 in my
example because that's what seems to be the "hot" file type right now.
The find files method won't work particularly well for image files
then....you'd hoick all your program graphics into your download folder
and end up with extremely ugly appz. If it's a finite number of folders,
you could take the .bat file approach....the good part is that you only
have to do it once. Type something like:
move c:\program files\netscape\users\download\*.gif c:\download
move c:\program files\netscape\users\download\*.jpg c:\download
move c:\program files\netscape\users\download\*.jpeg c:\download
move c:\program files\netscape\users\download\*.png c:\download
move c:\program files\opera\*.gif c:\download
move c:\program files\opera\*.jpg c:\download
move c:\program files\opera\*.jpeg c:\download
move c:\program files\opera\*.png c:\download
move c:\folder3\*.gif c:\download
move c:\folder3\*.jpg c:\download
move c:\folder3\*.jpeg c:\download
move c:\folder3\*.png c:\download
move c:\folder4\*.gif c:\download
move c:\folder4\*.jpg c:\download
move c:\folder4\*.jpeg c:\download
move c:\folder4\*.png c:\download
....and so on. Save the text file as imagetidy.bat or whatever and run it
(double click on it in Windows Explorer).