Here is my current folder structure:
C:\Invoices\**CustomerName**\January
I'm looking for a script that will go through ALL the CustomerNames and move the January folder to
C:\Invoices\**CustomerName**\2013\January
Thanks
cd \invoices for /d %%I in (*) do ( md "%%I\2013" move "%%I\January" "%%I\2013" )
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
3 months ago
viewed
196 times
active