Is there a way to export files/folders from Source Safe? (i.e. getting rid of all .scc files, just like SVN export)
+6
A:
Just do a regular get, then run something like
DEL /F /S /Q *.scc
That will delete all files that match *.scc along the path.
Chris Lively
2009-07-01 13:34:10
Thanks, I ended up using `DEL /F /S /Q /A SH *.scc` to include hidden and system files as well.
Oskar
2009-07-01 14:05:23
Beautiful, thanks. I can't wait until the day I never have to see VSS again :). I ran this against all the `*.vspscc` files as well.
Cory Larson
2010-10-25 14:12:49