vote up 3 vote down star
3

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)

flag

37% accept rate

5 Answers

vote up 7 vote down check

Since you're looking for a DOS solution, last week's post was almost identical and the consensus was:

http://stackoverflow.com/questions/521382/command-line-tool-to-delete-folder-with-a-specified-name-recursively-in-windows/521433#521433

for /d /r . %d in (.svn) do @if exist "%d" rd /s/q "%d"

or

for /f "usebackq" %d in ("dir .svn /ad/b/s") do rd /s/q "%d"

Actually, apparently TortoiseSVN also gives you the option to export a working directory without the .svn/_svn directories.

link|flag
vote up 1 vote down

On *nix or Cygwin:

find -name .svn -print0 | xargs -0 rm -rf
link|flag
vote up 3 vote down

Something like this may do the trick, but of course be careful with it!

find . -name ".svn" -exec rm -rf {} \;

Try something like this first to do a dry run:

find . -name ".*" -exec echo {} \;

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").

link|flag
This worked perfectly for me. Thanks! I needed to remove all "CVS" directories, so I ran a find . -name "CVS" -exec rm -rf {} \; – cmcculloh Feb 24 at 19:44
vote up 3 vote down

Is this Unix or Windows? On Unix, an easy solution is

find . -name '.svn' -type d | xargs rm -rf

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

find . -name '.svn' -type d | xargs echo

This should provide you with a list of all the directories which would be recursively deleted.

link|flag
vote up 3 vote down

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.

link|flag
ah, that's how you do it! – Rory Feb 10 at 23:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.