I figured out this way to create the complete path of an absolute file system from a relative or absolute URI and base path.
FROM
Uri basePathUri = new Uri(@"C:\abc\");
From relative URI:
string filePath = new Uri(basePathUri, relativeUri).AbsolutePath;
From an absolute URI:
acdx Mar 14 '10 at 15:19 2010-03-14 15:19
source share