One of the things that can make SVN work a mess is to loose track of local directories and files that have been switched (with svn switch) to other URLs in your repository.
The batch file below will help you track those down.
Run it from your repository root.
The batch files uses these things:
- svn status.
- svn info.
- svn switch.
- quoting path strings to keep them in one parameter.
- getting line by line command output using a FOR /F loop.
- parsing using substrings in batch files. Read the rest of this entry »





