是否可以通过 Windows CMD 自动执行文件移动和命名?

发布于 2024-11-02 23:08:44 字数 184 浏览 0 评论 0原文

我正在寻找一种方法,在启动时将桌面上的所有内容移动到 Users/[My User]/Archive/[TODAYSDATE]/。这可以在 Windows 中使用 BAT 脚本完成吗?我在 Linux 上做过类似的事情,一位朋友帮助我完成了 Cron 工作。

如何编写这样的脚本,以及如何将其自动化?预定任务?

提前致谢!

I'm looking for a way to, on boot, move everything on my desktop to Users/[My User]/Archive/[TODAYSDATE]/. Is this possible to do in Windows with a BAT-script? I've done a similar thing on Linux and a friend helped me with Cron jobs.

How would a script like that be written, and how would it be automated? Scheduled task?

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

¢好甜 2024-11-09 23:08:44

对于批处理文件,它可以很简单:

robocopy your_folder_path your_destination_path /SEC /MIR /V /TS
del your_folder_path\*

然后按照前面的建议,只需在 Windows 中设置计划任务即可。如何设置取决于您运行的 Windows 版本。

For the batch file, it can be as simple as:

robocopy your_folder_path your_destination_path /SEC /MIR /V /TS
del your_folder_path\*

And then as suggested prior, just set a scheduled task in Windows. How you set it up will depend on which version of Windows you're running.

二智少女猫性小仙女 2024-11-09 23:08:44

您可以使用计划任务。
在 Windows XP 中,您可以在控制面板中找到它。

在最新版本中,它位于“控制面板”>“行政工具。

我认为脚本会是这样的

move /Y path\of\origin\* path\of\destination

You can use scheduled tasks.
In Windows xp you can find it in control panel.

In latest versions it is in control panel > administrative tools.

I think the script would look like this

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