vote up 0 vote down star
1

How does C# cope with file separators? Is it always assumed the file separator is "\" (or "\\" and does this have to be escaped like this?

flag

@all thank you - I had come across a (misleading) article which suggested there was no equivalent – peter.murray.rust Oct 8 at 21:19

3 Answers

vote up 13 vote down check

I think Path.DirectorySeparatorChar is what you need. You can find it in the System.IO namespace.

link|flag
Sorry for pointing to PathSeparator, I fixed it now. – Geo Oct 8 at 21:01
vote up 1 vote down

If by file separators, you really mean directory separators, then you need Path.DirectorySeparatorChar and Path.AltDirectorySeparatorChar.

These will get the relevant platform-specific characters, without having to hard-code them (and also avoiding the need to escape them properly).

link|flag
vote up 5 vote down

To combine paths use, and as suggested by Geo, this works in conjunction with DirectorySeparatorChar

IO.Path.Combine("path", "file.ext");
link|flag

Your Answer

Get an OpenID
or

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