I want to move all the files and folders inside the folder "C:\Foldertest\" into the folder "C:\Foldertest\target".
And whenever I run this command, it does this for all files and folders except for the "C:\Foldertest\target" folder.
I want to move all the files and folders inside the folder "C:\Foldertest\" into the folder "C:\Foldertest\target".
And whenever I run this command, it does this for all files and folders except for the "C:\Foldertest\target" folder.
RoboCopy would be the preferred method:
Robocopy C:\FolderTest\ c:\FolderTest\Target /E /ZB /MOVE /MOT:60
C:\FolderTest, rather than it's contents/E: Copy subdirectories, including empty ones/ZB: Use restartable mode; if access denied use backup mode
/Z/MOVE: Move files and dirs (delete from source after copying)/MOT: Monitor source; run again in X minutes, if changed
/MON:1
/MON: Monitor source; run again when more than X changes seen