-
J
Move all subfolders from parent folder to a new unique created folder in the target location
Hi I made this batch code, to move all subfolders from "C:\1" to a new created folder inside folder "C:\2" @echo off set "sourceDir=C:\1" set "destinationDir=C:\2" set "newFolderName=NewSubfolder" mkdir "%destinationDir%\%newFolderName%" 2nul for /D %%I in ("%sourceDir%\*") do (...- Jakov93
- Thread
- automation batch file command line file management folder organization scripting subfolders unique folders windows commands
- Replies: 1
- Forum: Windows Help and Support