I have written a batch script to do the diff between two revisions using Windows command-line SVN. The directory name has a space (I am cursing the developer for creating a directory name with a space).
SVN Version: 1.7
OS: Windows XP
For example, /svnrepo/xyz/project/C# Code/files/
The trouble is for the C# code directory name, I am assuming that the space is causing the issue - when I tried to run the diff command, the output is quite unusual:
svn diff -r633:700 /svnrepo/xyz/project/***C# Code***/files/
A /svnrepo/xyz/project/C%23%20Code/files/
How do I correct this issue?
I wish to get the output like:
A /svnrepo/xyz/project/C# Code/files/ So that I can write the output to some text file.
PS: I am a Linux person. And new to batch scripting.