Das macht in gewisser Weise Sinn, wenn man bedenkt, wie (relative) Pfade normalerweise behandelt werden:
string GetFullPath(string path)
{
string baseDir = @"C:\Users\Foo.Bar";
return Path.Combine(baseDir, path);
}
// Get full path for RELATIVE file path
GetFullPath("file.txt"); // = C:\Users\Foo.Bar\file.txt
// Get full path for ROOTED file path
GetFullPath(@"C:\Temp\file.txt"); // = C:\Temp\file.txt
Die eigentliche Frage ist: Warum sind Pfade, die mit "\"
als "verwurzelt" betrachtet? Das war auch für mich neu, aber so funktioniert es unter Windows :
new FileInfo("\windows"); // FullName = C:\Windows, Exists = True
new FileInfo("windows"); // FullName = C:\Users\Foo.Bar\Windows, Exists = False