I have got a series of folders in a directory:
C:\directory\folderx C:\directory\foldery C:\directory\folderz etc.
Those folders amount to approximately one thousand in total, whereby I aim to move about half of them.
I want to move those folders with contents into another folder in the same directory (used a file listing.bat
to parse the folder titles and sort them, therefore I have obtained the final list of folders of interest in .txt
format).
C:\directory\folderq
So that the result will look like this:
C:\directory\folderq\folderx C:\directory\folderq\foldery C:\directory\folderq\folderz etc.
I'm not sure whether the following batch command would work for moving multiple folders, I'm actually afraid it will only result in folderx
falsely being moved in to foldery
and abort the command:
move C:\directory\folderx C:\directory\foldery C:\directory\folderz > C:\directory\folderq