DOS批处理文件每10分钟移动2000个文件

时间:2011-01-23 17:13:09

标签: dos

是否可以创建一个每10分钟将2000个文件移动到另一个文件夹的DOS脚本?

例如:

C:\ MyFolder文件\

每10分钟将2000个文件移动到C:\ MyNewFolder \

谢谢!

2 个答案:

答案 0 :(得分:0)

我会像推荐的那样使用xcopy之类的东西,但是我会使用date标志来指定只复制新文件。只需省略日期,它就会只复制较新的文件。


  /C           Continues copying even if errors occur.

  /D:m-d-y     Copies files changed on or after the specified date.
               If no date is given, copies only those files whose
               source time is newer than the destination time.

  /E           Copies directories and subdirectories, including empty ones.

xcopy C:\Source Z:\Destination /C /D /E

答案 1 :(得分:0)

使用Schtasks。

您可以查看此处:http://technet.microsoft.com/en-us/library/bb490996.aspx