Feedback

C# - Kanonischer Pfad

Veröffentlicht von am 5/2/2008
(1 Bewertungen)
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

SpatzenKanonier schrieb am 8/22/2008:
Schau dir mal (Objectbrowser):
Public ReadOnly Property AbsoluteUri() As String
Member of System.Uri
Summary:
Gets the absolute URI.

an
 

Logge dich ein, um hier zu kommentieren!