0

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

我可以访问 cygwin、perl 和 powershell。只是不知道该怎么做。

4

1 回答 1

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
于 2013-02-26T15:39:48.293 回答