If we have /TestDir
as an example path, yet we are on a Windows machine, using Path.Join
, or Path.Combine
with NextDir
will yield /TestDir\NextDir
.
Is there a way to make it so that if the path I'm appending it to, uses a given separator - the combined path uses the same separator? (Unix/Windows), that is:
\TestDir
withNextDir
to yield\TestDir\NextDir
./TestDir
withNextDir
to yield/TestDir/NextDir
.
The first directory will always be a rooted path, meaning it will always contain the path separator to use. The only edge-case is network paths, as they always start with \\
but after that they differ in Unix/Windows? Correct me if I'm wrong on this.
EDIT: I've been told that :
is the path separator for Classic Mac - is this true? I don't see any .NET API's that treat this as a directory separator.
This will take the first character (either
/
or\
) that it sees and it will replace all other occurrences of/
or\
with the first one that it found.Check it out running here: https://dotnetfiddle.net/fenzWO