Dos 命令 xcopy 具有当前日期 - 90 天变量
我需要一个 .bat 文件来使用 xcopy 命令复制 90 天新的特定目录中的文件。这意味着取出今天的日期并取出 90 天,并且不执行复制。
需要帮助,
谢谢
i need to a .bat file to copy with xcopy command the files from a specific directory that are 90 days new. that means to take the todays date and take out 90 days of it and do not perform the copy.
help is needed,
thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
ROBOCOPY
而不是XCOPY
。它会很容易地做你想做的事。 Robocopy 安装在 Windows 7 上,并且可以免费下载其他版本。还有许多其他选项,例如最小年龄、最小和最大大小、属性、按文件和目录名称过滤等等。
您还可以使用 /L 选项仅列出它将执行的操作,以检查其他选项是否正确。
Use
ROBOCOPY
notXCOPY
. It will do what you want very easily. Robocopy is installed on Windows 7 and is a free download for other versions.There are many other options, for minimum age, min and max size, attrributes, filtering by file and directory names, and so forth.
Also you can use the /L option to just list what it would have done, to check you have the other options right.