[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

RE: Newbie Problem

From: Lesh <mlesher_at_investedge.com>
Date: Wed, 9 Jun 2010 16:19:13 -0400

1) This code works like a charm if you're not worried about blowing away any other .svn subdirectory folders on the c: drive and want to do it using a DOS batch file or via the cmd line

 (DO NOT USE if you want to keep any of the Local SVN subdirectories in place):

-- Clean up local .svn folders to avoid corrupting SVN repositories.
for /f "tokens=* delims=" %%i in ('dir /s /b /a:d *.svn') do (rd /s /q "%%i")

2) Your second option is to pipe the results from 'dir /s /b /a:d *.svn > svn_filelist.txt' from any directory and then filter out any .svn folders/files and repos that you don't want deleted.

------------------------------------------------------
http://tortoisesvn.tigris.org/ds/viewMessage.do?dsForumId=4061&dsMessageId=2618939

To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_tortoisesvn.tigris.org].
Received on 2010-06-09 22:20:22 CEST

This is an archived mail posted to the TortoiseSVN Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.