Path.Combine is handy, but is there a similar function in the .NET framework for Urls?

I'm looking for syntax like this:

Url.Combine("Http://MyUrl.com/", "/Images/Image.jpg")

which would return:

"Http://MyUrl.com/Images/Image.jpg"

Of course, string concatenation would be fine here since the '//' would be handled intelligently by the browser. But it feels a little less elegant.

link|improve this question

feedback

12 Answers

up vote 175 down vote accepted

Uri has a constructor that should do this for you: new Uri(Uri baseUri, string relativeUri)

Here's an example:

Uri baseUri = new Uri("http://www.contoso.com");
Uri myUri = new Uri(baseUri, "catalog/shownew.htm");
link|improve this answer
4  
As a fan of using as much already built code as you can, I was wondering why no one had suggested this yet until I spotted your answer. This is, IMO, the best answer. – Chris Mar 28 '10 at 0:30
17  
I like the use of the Uri class, unfortunately it will not behave like Path.Combine as the OP asked. For example new Uri(new Uri("test.com/mydirectory/";), "/helloworld.aspx").ToString() gives you "test.com/helloworld.aspx";; which would be incorrect if we wanted a Path.Combine style result. – DoctaJonez Oct 28 '10 at 15:20
11  
It's all in the slashes. If the relative path part starts with a slash, then it behaves as you described. But, if you leave the slash out, then it works the way you'd expect (note the missing slash on the second parameter): new Uri(new Uri("test.com/mydirectory/";), "helloworld.aspx").ToString() results in "test.com/mydirectory/helloworld.aspx";. Path.Combine behaves similarly. If the relative path parameter starts with a slash, it only returns the relative path and doesn't combine them. – Joel Beckham Oct 28 '10 at 22:11
4  
If your baseUri happened to be "test.com/mydirectory/mysubdirectory" then the result would be "test.com/mydirectory/helloworld.aspx" instead of "test.com/mydirectory/mysubdirectory/helloworld.aspx". The subtle difference is the lack of trailing slash on the first parameter. I'm all for using existing framework methods, if I have to have the trailing slash there already then I think that doing partUrl1 + partUrl2 smells a lot less - I could've potentially been chasing that trailing slash round for quite a while all for the sake of not doing string concat. – Carl Jan 12 '11 at 16:10
4  
The only reason I want a URI combine method is so that I don't have to check for the trailing slash. Request.ApplicationPath is '/' if your application is at the root, but '/foo' if it's not. – nickd Mar 25 '11 at 16:44
show 3 more comments
feedback

You use Uri.TryCreate( ... ) :

Uri result = null;

if (Uri.TryCreate(new Uri("http://msdn.microsoft.com/en-us/library/"), "/en-us/library/system.uri.trycreate.aspx", out result))
{
    Console.WriteLine(result);
}

Will return:

http://msdn.microsoft.com/en-us/library/system.uri.trycreate.aspx

link|improve this answer
4  
+1: This is good, although I have an irrational problem with the output parameter. ;) – Brian MacKay Oct 29 '09 at 14:24
1  
This is a much better approach, as it will also work for paths of the form "../../something.html" – wsanville Mar 28 '10 at 0:32
3  
@Brian: if it helps, all TryXXX methods (int.TryParse, DateTime.TryParseExact) have this output param to make it easier to use them in an if-statement. Btw, you don't have to initialize the variable as Ryan did in this example. – Abel Aug 26 '10 at 22:11
feedback

This may be a suitably simple solution:

public static string Combine(string uri1, string uri2)
{
    uri1 = uri1.TrimEnd('/');
    uri2 = uri2.TrimStart('/');
    return string.Format("{0}/{1}", uri1, uri2);
}
link|improve this answer
1  
+1: Although this doesn't handle relative-style paths (../../whatever.html), I like this one for its simplicity. I would also add trims for the '\' character. – Brian MacKay May 8 '10 at 15:55
See my answer for a more fully fleshed out version of this. – Brian MacKay May 12 '10 at 13:46
feedback

This question got some great, highly voted answers!

Ryan Cook's answer is close to what I'm after and may be more appropriate for other developers. However, it adds http:// to the beginning of the string and in general it does a bit more formatting than I'm after.

Also, for my use cases, resolving relative paths is not important.

mdsharp's answer also contains the seed of a good idea, although that actual implementation needed a few more details to be complete. This is an attempt to flesh it out (and I'm using this in production):

Public Function UrlCombine(ByVal url1 As String, ByVal url2 As String) As String
    If url1.Length = 0 Then
        Return url2
    End If

    If url2.Length = 0 Then
        Return url1
    End If

    url1 = url1.TrimEnd("/\")
    url2 = url2.TrimStart("/\")

    Return String.Format("{0}/{1}", url1, url2)
End Function

This code passes the following test:

<TestMethod()> Public Sub UrlCombineTest()
    Dim target As StringHelpers = New StringHelpers()

    Assert.IsTrue(target.UrlCombine("test1", "test2") = "test1/test2")
    Assert.IsTrue(target.UrlCombine("test1/", "test2") = "test1/test2")
    Assert.IsTrue(target.UrlCombine("test1", "/test2") = "test1/test2")
    Assert.IsTrue(target.UrlCombine("test1/", "/test2") = "test1/test2")
    Assert.IsTrue(target.UrlCombine("/test1/", "/test2/") = "/test1/test2/")
    Assert.IsTrue(target.UrlCombine("", "/test2/") = "/test2/")
    Assert.IsTrue(target.UrlCombine("/test1/", "") = "/test1/")
End Sub
link|improve this answer
Thanks for expanding on this! – mdsharpe May 13 '10 at 12:37
Talking of details: what about the mandatory ArgumentNullException("url1") if the argument is Nothing? Sorry, just being picky ;-). Note that a backslash has nothing to do in a URI (and if it is there, it should not be trimmed), so you can remove that from your TrimXXX. – Abel Aug 26 '10 at 22:21
@Abel: Feel free to edit that in if you'd like. :) – Brian MacKay Jun 14 '11 at 21:29
feedback

Based on the sample Url you provided I'm going to assume you want to combine Urls that are relative to your site.

Based on this assumption I'll propose this solution as the most appropriate response to your question which was: "Path.Combine is handy, is there a similar function in the framework for Urls?"

Since there the is a similar function in the framework for Urls I propose the correct is: "VirtualPathUtility.Combine" method. Here's the MSDN reference link: VirtualPathUtility.Combine Method

There is one caveat: I believe this only works for Urls relative to your site (i.e., you cannot use it to generate links to another web site. e.g., var url = VirtualPathUtility.Combine("www.google.com", "accounts/widgets");.

If I'm off base or missing something (which I often am) let me know... ;)

link|improve this answer
+1 because it's close to what I'm looking for, although it would be ideal if it would work for any old url. I double it will get much more elegant than what mdsharpe proposed. – Brian MacKay Mar 29 '10 at 21:28
The caveat is correct, it cannot work with absolute uris and the result is always relative from the root. But it has an added benefit, it processes the tilde, as with "~/". This makes it a shortcut for Server.MapPath and combining. – Abel Aug 26 '10 at 22:18
feedback

Witty example, Ryan, to end with a link to the function. Well done.

One recommendation Brian: if you wrap this code in a function, you may want to use a UriBuilder to wrap the base Url prior to the TryCreate call. Otherwise, the base url MUST include the Scheme (where the UriBuilder will assume http://). Just a thought:

public string CombineUrl(string baseUrl, string relativeUrl) {
    UriBuilder baseUri = new UriBuilder(baseUrl);
    Uri newUri;


    if (Uri.TryCreate(baseUri.Uri, relativeUrl, out newUri))
        return newUri.ToString();
    else
        throw new ArgumentException("Unable to combine specified url values");
}
link|improve this answer
you forgot the out in the TryCreate on the newUri parameter. Thanks for the nice solution, I made it an extension method on string. – Stephane Jul 23 '10 at 10:56
@Stephane: good suggestion, added (and removed the = null of newUri initialization). – Abel Aug 26 '10 at 22:23
Edited to make the return value Uri for better functionality, also removed redundant else. – sevenalive Mar 10 '11 at 2:22
feedback

Path.Combine does not work for me because there can be characters like "|" in QueryString arguments and therefore the Url, which will result in an ArgumentException.

I first tried the new Uri(Uri baseUri, string relativeUri) approach, which failed for me because of Uri's like http://www.mediawiki.org/wiki/Special:SpecialPages:

new Uri(new Uri("http://www.mediawiki.org/wiki/"), "Special:SpecialPages")

will result in Special:SpecialPages, because of the colon after Special that denotes a scheme.

So I finally had to take mdsharpe/Brian MacKays route and developed it a bit further to work with multiple uri parts:

public static string CombineUri(params string[] uriParts)
{
    string uri = string.Empty;
    if (uriParts != null && uriParts.Count() > 0)
    {
        char[] trims = new char[] { '\\', '/' };
        uri = (uriParts[0] ?? string.Empty).TrimEnd(trims);
        for (int i = 1; i < uriParts.Count(); i++)
        {
            uri = string.Format("{0}/{1}", uri.TrimEnd(trims), (uriParts[i] ?? string.Empty).TrimStart(trims));
        }
    }
    return uri;
}

Usage: CombineUri("http://www.mediawiki.org/", "wiki", "Special:SpecialPages")

link|improve this answer
This worked for me. – GiddyUpHorsey Jul 18 '11 at 2:44
+1: Now we're talking... I'm going to try this out. This might even end up being the new accepted answer. After trying to new Uri() method I really don't like it. Too finnicky. – Brian MacKay Jul 18 '11 at 14:23
feedback

I just put together small Extension method

public static string UriCombine (this string val, string append)
        {
            if (String.IsNullOrEmpty(val)) return append;
            if (String.IsNullOrEmpty(append)) return val;
            return val.TrimEnd('/') + "/" + append.TrimStart('/');
        }

can be used like this:

"www.example.com/".UriCombine("/images").UriCombine("first.jpeg");
link|improve this answer
feedback

There's already some great answers here. Based on mdsharpe suggestion, here's an extension method that can easily be used when you want to deal with Uri instances:

using System;
using System.Linq;

public static class UriExtensions
{
    public static Uri Append(this Uri uri, params string[] paths)
    {
        return new Uri(paths.Aggregate(uri.AbsoluteUri, (current, path) => string.Format("{0}/{1}", current.TrimEnd('/'), path.TrimStart('/'))));
    }
}

And usage example:

var url = new Uri("http://site.com/subpath/").Append("/part1/", "part2").AbsoluteUri;

This will produce http://site.com/subpath/part1/part2

link|improve this answer
This solution makes it trivial to write a UriUtils.Combine("base url", "part1", "part2", ...) static method that is very similar to Path.Combine(). Nice! – Andreas Larsen Nov 19 '11 at 15:23
To support relative URIs I had to use ToString() instead of AbsoluteUri and UriKind.AbsoluteOrRelative in the Uri constructor. – Andreas Larsen Nov 20 '11 at 19:34
Thanks for the tip about relative Uris. Unfortunately Uri doesn't make it easy to deal with relative paths as there is always some mucking about with Request.ApplicationPath involved. Perhaps you could also try using new Uri(HttpContext.Current.Request.ApplicationPath) as a base and just call Append on it? This will give you absolute paths but should work anywhere within site structure. – Ales Potocnik Hahonina Nov 21 '11 at 12:03
feedback
Path.Combine("Http://MyUrl.com/", "/Images/Image.jpg").Replace("\\", "/")
link|improve this answer
feedback

I know this has been answered, but an easy way to combine them and ensure it's always correct is..

string.Format("{0}/{1}", Url1.Trim('/'), Url2);
link|improve this answer
+1, although this is very similiar to mdsharpe's answer, which I improved upon in my answer. This version works great unless Url2 starts with / or \, or Url1 accidentally ends in \, or either one is empty! :) – Brian MacKay May 12 '10 at 23:57
feedback

I have to point out that Path.Combine appears to work for this also directly atleast on .NET4

link|improve this answer
4  
If you use Path.Combine u will end up with something like this: www.site.com/foo\wrong\icon.png – Lehto Oct 25 '10 at 13:56
feedback

Your Answer

 
or
required, but never shown

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