Hi, I'm running WinXP Pro SP2 (fully updated) and trying to create either a manually run command line tool, or a bash script for later use. The objective is to go through my root music folder and copy all of the
zunealbumart.jpg and / or
zunecustomalbumart.jpg files and paste them into the same directory now named
folder.jpg
So far I have gotten this command to get close, but it comes back telling me that "The system cannot find the file specified." Any ideas?
Code:
C:\Documents and Settings\insanity.FIDO\Desktop\Temp Music>for /R %d in ("c:\Documents and Settings\insanity.FIDO\Desktop\Temp Music\") do copy %dz*.jpg %d\folder.jpg
This is in a test directory, but I'll eventually be running it on an external hard drive in a similar directory tree.
Cheers!
Edit - oh, and I got that idea mostly from here: http://forums.xkcd.com/viewtopic.php?f=11&t=14965