复制文件夹结构没有.svn文件夹

时间:2011-05-13 14:01:16

标签: svn windows-7 powershell

有人可以帮助我使用脚本从项目结构中复制所有文件夹而不使用.svn文件夹吗?谢谢你的帮助

2 个答案:

答案 0 :(得分:5)

你只需要exclude吗?

copy-item $source -destination $dest -exclude *.svn -recurse

答案 1 :(得分:3)

似乎不起作用(至少在我的机器上)。请参阅:Exclude list in PowerShell Copy-Item does not appear to be working 找到适合我的解决方案(明显换掉排除)