如何使用新名称将目录和内容复制到同一位置

时间:2017-08-03 17:52:29

标签: windows command-line

我将自己回答这个问题以获取相关信息,因为我无法在谷歌上找到答案。我需要运行一个命令,将文件夹foo复制到与foo相同的位置,并将其命名为bar。 (见下图) current state desired state

我尝试了复制命令的几种变体并复制到另一个位置重命名然后向后移动,但这对我来说太复杂了。如果我错过了什么,请随时扩大我的答案。 感谢

1 个答案:

答案 0 :(得分:1)

不是说这是完美的,但这对我有用

#first move to the desired working directory
cd C:\temp
#then run the following command using exactly the syntax below
xcopy .\foo .\bar\

这对我有用。