vote up 0 vote down star

For emample, if I have

http://www.mysite.com/mydirectory/myfile.aspx

How can I get

http://www.mysite.com/mydirectory

I am looking for a .NET function call.

flag

58% accept rate

6 Answers

vote up 1 vote down check

There is no property but it isn't too hard to parse it out:

Uri uri = new Uri("http://www.mysite.com/mydirectory/myfile.aspx");
string[] parts = uri.LocalPath.Split('/');
if(parts.Length >= parts.Length - 2){
     string directoryName = parts[parts.Length - 2];
}

robb

link|flag
vote up 1 vote down

Here's a pretty clean way of doing it. Also has the advantage of taking any url you can throw at it:

var uri = new Uri("http://www.mysite.com/mydirectory/myfile.aspx?test=1");
var newUri = new Uri(uri, System.IO.Path.GetDirectoryName(uri.AbsolutePath));

NOTE: removed Dump() method. (It's from LINQPad which was where I was verifying this!)

link|flag
What does Dump() do? This solution does not compile here. – Cloud Oct 23 at 23:35
Works well without the Dump() call though. +1 for having a nice clean solution that works for every url (even without a filename). – Cloud Oct 23 at 23:36
No more votes left :| – Cloud Oct 23 at 23:38
Erm....haha silly testing ground statements! Dump() is an internal method for LINQPad which is where I usually test things before posting them! – Josh Oct 23 at 23:49
vote up 6 vote down

Try this (without string manipulation):

Uri baseAddress = new Uri("http://www.mysite.com/mydirectory/myfile.aspx?id=1");
Uri directory = new Uri(baseAddress, "."); // "." == current dir, like MS-DOS
Console.WriteLine(directory.OriginalString);
link|flag
I had something very similar, but I like this much, better since it has one less function call! – Josh Oct 23 at 23:44
vote up 1 vote down

What about simple string manipulation?

public static Uri GetDirectory(Uri input) {
    string path = input.GetLeftPart(UriPartial.Path);
    return new Uri(path.Substring(0, path.LastIndexOf('/')));
}

// ...
newUri = GetDirectory(new Uri ("http://www.mysite.com/mydirectory/myfile.aspx"));
// newUri is now 'http://www.mysite.com/mydirectory'
link|flag
vote up 0 vote down

If you're sure a filename is on the end of the URL the following code will work.

using System;
using System.IO;

Uri u = new Uri(@"http://www.mysite.com/mydirectory/myfile.aspx?v=1&t=2");

//Ensure trailing querystring, hash, etc are removed
string strUrlCleaned = u.GetLeftPart(UriPartial.Path); 
// Get only filename
string strFilenamePart = Path.GetFileName(strUrlCleaned); 
// Strip filename off end of the cleaned URL including trailing slash.
string strUrlPath = strUrlCleaned.Substring(0, strUrlCleaned.Length-strFilenamePart.Length-1);

MessageBox.Show(strUrlPath); 
// shows: http://www.mysite.com/mydirectory

I added some junk to the querystring of the URL to prove it still works when parameters are appended.

link|flag
vote up 0 vote down

The method Uri.GetLeftPart(..) is a good starting point. See the MSDN article.

link|flag
It's a good start but it does not answer my question. – tom greene Oct 23 at 23:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.