Windows batch script to move files

后端 未结 4 2170
滥情空心
滥情空心 2021-02-20 00:40

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

4条回答
  •  谎友^
    谎友^ (楼主)
    2021-02-20 01:06

    Create a file called MoveFiles.bat with the syntax

    move c:\Sourcefoldernam\*.* e:\destinationFolder
    

    then schedule a task to run that MoveFiles.bat every 10 hours.

提交回复
热议问题