I have an audio file name with spaces
String filename = @"c:\users\me\desktop\this is audio.mp3";
say i want to open this file through cmd using external process,to open it i need the path to be like this : c:\users\me\desktop\"this is audio.mp3"
(With quotes)
any ideas how to convert it to valid verbatim literal ?
I've tried the following:
String file2 = @"c:\users\me\desktop\""this is audio.mp3""";
but i got this
c:\users\me\desktop\\this is audio.mp3"