我需要将某种类型的文件(* .vcproj)从文件夹树A \复制到树B中的相应文件夹。在A \下会有几层嵌套文件夹,并且B中存在相同的文件夹结构\,虽然A \ 中的某些文件夹可能不存在于B \中,反之亦然。
我可以访问cygwin,perl和powershell。只是不知道如何去做这个。
答案 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