Search code examples
c#regexuri

How to pull the server name from a UNC


Would anyone be able to tell me how to pull the server name out of a UNC?

ex.

//servername/directory/directory

Edit : I apologize but it looks like I need to clarify a mistake: the path actually is more like:

//servername/d$/directory

I know this might change things a little


Solution

  • How about Uri:

    Uri uri = new Uri(@"\\servername\d$\directory");
    string[] segs = uri.Segments;
    string s = "http://" + uri.Host + "/" + 
        string.Join("/", segs, 2, segs.Length - 2) + "/";