Erstellt aus einem absoluten Pfad, eine kanonische
Pfadangabe.
(Nützlich bei Interop mit OpenOffice etc.)
static string GetCanonicalPath (string file)
{
try
{
file = file.Replace(@"\", "/");
return "file:///" + file;
}
catch (System.Exception ex)
{
throw ex;
}
}
static string GetAbsoluteFromCanonicalPath(string file)
{
try
{
file = file.Replace("/", @"\");
return (file.Substring(8));
}
catch (System.Exception ex)
{
throw ex;
}
}
1 Kommentare zum Snippet