I have an unversioned folder "Data Files" in D:\test\prototype\AtlasTools\Transforms\SxS\src\ folder.
I need to add these folder using commandline. I used the following code to add:
for /f "usebackq tokens=2*" %i in (`svn status ^| findstr /r "^\?"`) do svn add "%i"
But it is showing error like "SxS\src\Data cannot be found. Actually my folder name is "Data Files".
How can I add a folder having space in it?