gpt4 book ai didi

batch-file - 多次复制文件夹及其内容,然后重命名

转载 作者:行者123 更新时间:2023-12-01 10:01:48 24 4
gpt4 key购买 nike

我正在寻找适用于 Windows 7 的简单批处理脚本,用于从目标位置复制文件夹及其内容,并将其粘贴到另一个目标位置,重复 x 次,并使用增量名称。

例子:

给定一个文件夹 C:\Folder。我想用不同的名称将它复制到这个文件夹:C:\Destination 7 次,所以结果看起来像这样(在 C:\Destination 内):

副本1

副本2

副本3

.

.

副本7

提前致谢!

最佳答案

for /l %%A in (1,1,7) do @xcopy "C:\Folder" "C:\Destination\Copy%%A" /i

参见 for /?xcopy /?获取所有选项和帮助。


要在命令行上运行它,请确保使用 %A 而不是 %%A。

Use %variable to carry out for from the command prompt. Use %%variable to carry out the for command within a batch file. Variables are case-sensitive and must be represented with an alpha value, such as %A, %B, or %C.

关于batch-file - 多次复制文件夹及其内容,然后重命名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15157699/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com