Could someone help me with the script for copying all folders 开发者_如何学编程from project structure without .svn folders ? Thanks for any help
You simply need exclude
do you?
copy-item $source -destination $dest -exclude *.svn -recurse
that doesnt seem to work (at least on my machines). See : Exclude list in PowerShell Copy-Item does not appear to be working for a solution that works for me (swap out the exlcudes obviously)
精彩评论