How can I recursively delete all files & directories that match a certain pattern? e.g. remove all the ".svn" directories and the files they contain?
(Sadly DOS only)
|
How can I recursively delete all files & directories that match a certain pattern? e.g. remove all the ".svn" directories and the files they contain? (Sadly DOS only)
| ||||
|
feedback
|
|
Since you're looking for a DOS solution, last week's post was almost identical and the consensus was:
or
Actually, apparently TortoiseSVN also gives you the option to export a working directory without the .svn/_svn directories. | |||||
feedback
|
|
Is this Unix or Windows? On Unix, an easy solution is
This searches recursively for all directories (-type d) in the hierarchy starting at "." (current directory), and finds those whose name is '.svn'; the list of the found directories is then fed to rm -rf for removal. If you want to try it out, try
This should provide you with a list of all the directories which would be recursively deleted. | |||
feedback
|
|
If your files are in subversion, then doing an export from the repository will give you a directory tree with the .svn files and any other cruft removed. | |||||
feedback
|
|
Something like this may do the trick, but of course be careful with it!
Try something like this first to do a dry run:
Note that the empty braces get filled in with the file names and the escaped semicolon ends the command that is executed (starting after the "-exec"). | |||
feedback
|
|
If you want to copy it without exporting and eliminating the .svn from the projects, you shold use the /EXCLUDE option from XCOPY. Like this:
Observe the "\" (backslash) on the [path_to]. It determines that it's an output directory, so, xcopy will not question if it's a file or a directory. The svn.excludelist is a text file containing the patterns to ignore on copy separated by line. For Example:
And so on... | |||
|
feedback
|