vote up 1 vote down star

Is there a quick way to join paths like the Join-Path function in Powershell? For example, I have two parts of a path "C:\foo" and a subdirectory "bar". Join-Path will join these and take care of the backslash delimiters. Is there a built-in method for this in .NET, or do I need to handle this myself?

flag

4 Answers

vote up 7 vote down check

This is your friend: http://msdn.microsoft.com/en-us/library/system.io.path.combine.aspx

link|flag
vote up 1 vote down

System.IO.Path.Combine

link|flag
vote up 1 vote down

Path.Combine is the way to go.

link|flag
vote up 2 vote down

System.IO.Path.Combine is the one you're looking for. There's quite a few useful methods on the Path class.

link|flag

Your Answer

Get an OpenID
or

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