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

Re: TSVN and ASP.NET

From: Kevin Greiner <greinerk_at_gmail.com>
Date: 2006-01-29 21:10:03 CET

On 1/28/06, Stefan Küng <tortoisesvn@gmail.com> wrote:
> * You rename all admin directories (.svn / _svn) accordingly

Here's what I use. Save to a .vbs file.

Set FSO = CreateObject("Scripting.FileSystemObject")
ShowSubfolders FSO.GetFolder(".\")
Wscript.Echo "Renamed .svn folders to _svn"
Sub ShowSubFolders(Folder)
        For Each Subfolder in Folder.SubFolders
                rem Wscript.Echo Subfolder.Path
                If Subfolder.Name = ".svn" Then
                        Subfolder.Name = "_svn"
                        rem Wscript.Echo " renamed .svn -> " & Subfolder.Path
                        rem Wscript.Echo errResults
                End If
                ShowSubFolders Subfolder
        Next
End Sub

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tortoisesvn.tigris.org
For additional commands, e-mail: users-help@tortoisesvn.tigris.org
Received on Sun Jan 29 21:10:13 2006

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.