批处理文件存储带时间戳的备份文件

发布于 2025-01-05 17:54:06 字数 277 浏览 0 评论 0原文

我在同一驱动器中有两个文件夹。我想创建 Access 数据库的备份。我需要复制主文件,在名称后附加日期和时间,并将其存储在不同的文件夹中。

源文件夹:G:\PMO\Talent Mgt\Data 源文件:Talent_Management_Data.accdb

目标文件:G:\PMO\Talent Mgt\Archive\Talent_Management_Data.accdb_20120101

有什么建议吗?

I have two folders in the same drive. I want to create backup of an access database. I need to copy the main file, append the name with the date and time and store it in a different folder.

Source Folder: G:\PMO\Talent Mgt\Data
Source file: Talent_Management_Data.accdb

Destination File: G:\PMO\Talent Mgt\Archive\Talent_Management_Data.accdb_20120101

Any suggestions?

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

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

发布评论

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

评论(1

夕嗳→ 2025-01-12 17:54:06

您可以通过使用 for 命令对每个文件执行 copy 来实现此目的。一个简单的批处理文件是:

cd "G:\PMO\Talent Mgt\Data"
for %%A in (*.accdb) do copy %%A ..\Archive\%%A_%date:-=%

You can achieve this by using for command to execute copy for each file. A simple batch file would be:

cd "G:\PMO\Talent Mgt\Data"
for %%A in (*.accdb) do copy %%A ..\Archive\%%A_%date:-=%
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文