Dos 命令 xcopy 具有当前日期 - 90 天变量

发布于 2024-10-22 17:35:39 字数 103 浏览 1 评论 0原文

我需要一个 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

抚你发端 2024-10-29 17:35:39

使用ROBOCOPY而不是XCOPY。它会很容易地做你想做的事。 Robocopy 安装在 Windows 7 上,并且可以免费下载其他版本。

ROBOCOPY /S /MAXAGE:90 P:\path\to\source Q:\path\to\dest

还有许多其他选项,例如最小年龄、最小和最大大小、属性、按文件和目录名称过滤等等。

您还可以使用 /L 选项仅列出它将执行的操作,以检查其他选项是否正确。

Use ROBOCOPY not XCOPY. It will do what you want very easily. Robocopy is installed on Windows 7 and is a free download for other versions.

ROBOCOPY /S /MAXAGE:90 P:\path\to\source Q:\path\to\dest

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文