toplevel\variable_folder_name\PSD\
so, for example:
toplevel\1234567890\PSD\
toplevel\0987654321\PSD\
What I need to end up with is:
toplevel\1234567890\PSD\
toplevel\1234567890\PSD_temp\
toplevel\0987654321\PSD\
toplevel\0987654321\PSD_temp\
Basically, I'd like to take the PSD folder, and its contents, and copy them to a new folder on the same level as the original PSD folder. Can anyone help with this or offer some guidance?
I was experimenting with this.. It seems to read all the files but doesn't actually copy them:
Code: Select all
for /d %%a in ("e:\0-TESTING\*") do @copy "%%~Fa\PSD\*" "%%~Fa\PSD_temp\" 2>NUL