是否可以通过 Windows CMD 自动执行文件移动和命名?
我正在寻找一种方法,在启动时将桌面上的所有内容移动到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于批处理文件,它可以很简单:
然后按照前面的建议,只需在 Windows 中设置计划任务即可。如何设置取决于您运行的 Windows 版本。
For the batch file, it can be as simple as:
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.
您可以使用计划任务。
在 Windows XP 中,您可以在控制面板中找到它。
在最新版本中,它位于“控制面板”>“行政工具。
我认为脚本会是这样的
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