I have a UNC path of \\houtester\common\log library\graphics that I'm needing to use in my c# program and obviously it won't won't because of that blank space. How can I get this path to work?
Thanks
I have a UNC path of \\houtester\common\log library\graphics that I'm needing to use in my c# program and obviously it won't won't because of that blank space. How can I get this path to work?
Thanks
Is that the full path? I'm assuming you may need \ prefixing your complete path. i.e:
string path = @"\\houtester\common\log library\graphics";
Also make sure that path is available from the machine you are attempting to connect from. Security settings could be botching you.
Try using the literal string symbol '@' before the string @"\\houtester\common\log library\graphics"