Why does Path.Combine not properly concatenate filenames that start with Path.DirectorySeparatorChar?
From the Immediate Window in Visual Studio: > Path.Combine(@”C:\x”, “y”) “C:\\x\\y” > Path.Combine(@”C:\x”, @”\y”) “\\y” It seems that they should both be the … Read more