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