Question

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?

Was it helpful?

OTHER TIPS

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

Path.Combine is the way to go.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top