vote up 0 vote down star

I am using the ConfigurationManager.AppSetting["blah"].ToString() method to get the path to the folder that contains the files I'm needing. But I'm throwing an UnsupportedFormatException on the path when it tries to use Directory.GetFiles(path).

The returning value has the escape characters included and I'm not sure how to keep it from returning the extra characters. This is what the path looks like after it is returned:

\\\\\\\\C:\\\\folder1\\\\folder2

flag
Disregard question. I needed to remove the first four "\" to give it a correct path. – Josh H. Oct 20 at 15:06

2 Answers

vote up 0 vote down

I needed to remove the first four "\" to give it a correct path.

link|flag
vote up 0 vote down

you have extra back-slash \ at the beginning of your path.

try putting "C:\folder1\folder2" instead of "\\C:\folder1\folder2" in your config file, and it will work.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.