How can one get an absolute or normalized file path in .NET?

.net, filepath

Solution

`Path.GetFullPath` perhaps?

Problem

How can one with minimal effort (using some already existing facility, if possible) convert paths like `c:\aaa\bbb\..\ccc` to `c:\aaa\ccc`?

Original source

Related problems