If I have a string that resolves to a file path in Windows, is there an accepted way to get a canonical form of the file name?
For example, I\'d like to know whether
I guess I'm a little late, but you can use System.IO.Path.GetFullPath("C:\stuff\things\etc\misc\other..\whatever.txt") and it will return "C:\stuff\things\etc\misc\whatever.txt"