1
robocopy /"C:\Users\john smith\Documents\Visual Studio 2010\Projects\project\checker\bin\Debug\/" /"C:\Users\john smith\project\Assemblies/" checker.dll
When I run this through the command line it adds an extra C:\ before the filepaths (e.g. C:\Users\john smith\Documents\Visual Studio 2010\Projects\project\checker\bin\Debug\
becomes C:\C:\Users\john smith\Documents\Visual Studio 2010\Projects\project\checker\bin\Debug\
).
Why?
looks like
/
is interpreted as drive root (c:\\
). Those forward slashes seem out of place, what's their intended purpose btw? – wmz – 2012-10-03T14:56:29.957It's supposed to escape the quote marks I had to include since my filepaths have spaces. – MHTri – 2012-10-03T15:52:22.170