在Windows 7上,需要将A \中的文件复制到B \中不存在的文件

时间:2013-02-26 15:29:50

标签: shell directory file-copying

我需要将某种类型的文件(* .vcproj)从文件夹树A \复制到树B中的相应文件夹。在A \下会有几层嵌套文件夹,并且B中存在相同的文件夹结构\,虽然A \ 中的某些文件夹可能不存在于B \中,反之亦然。

我可以访问cygwin,perl和powershell。只是不知道如何去做这个。

1 个答案:

答案 0 :(得分:0)

Robocopy应该做你需要的。 robocopy ./a ./b *.vcproj /s会转变:

/a
  /dir
    test.vcproj
  another.vcproj

/b
  /otherDir

进入这个:

/a
  /dir
    test.vcproj
  another.vcproj

/b
  /dir
    test.vcproj
  /otherDir
  another.vcproj