I need to move files from one directory to another in windows, and I need to write this in a batch script.
We have written a SQL job where backup files will be created e
You can try this:
:backup move C:\FilesToBeBackedUp\*.* E:\BackupPlace\ timeout 36000 goto backup
If that doesn't work try to replace "timeout" with sleep. Ik this post is over a year old, just helping anyone with the same problem.