you could try a powershell script which parses either 'svn list -R' for the
file list (svn list gets the list from the repo), or the list from 'svn st
-v -q'. The list from the status command needs cleaning up first though.
And then go through that list like this:
[string]$Zip = "C:\path to 7zip\7-zip\7z.exe";
[array]$args = "a", "-tzip", "-y", "-r", "$arcPath ";
ForEach ( $file in $filesToBackUP )
{
$Zip $args $file;
}
--
You received this message because you are subscribed to the Google Groups
"TortoiseSVN" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/tortoisesvn/41f1141d-b9fe-40f8-8296-60080703e31an%40googlegroups.com.