Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was looking for something like Server.MapPath in the ASP.NET realm to convert the output of Assembly.GetExecutingAssembly().CodeBase into a file path with drive letter.

The following code works for the test cases I've tried:

private static string ConvertUriToPath(string fileName)
{
    fileName = fileName.Replace("file:///", "");
    fileName = fileName.Replace("/", "\\");
    return fileName;
}

It seems like there should be something in the .NET Framework that would be much better--I just haven't been able to find it.

share|improve this question
Scott's answer is what you want, but I'm out of votes. – MusiGenesis Nov 10 '08 at 19:20

4 Answers

up vote 13 down vote accepted

Try looking at the Uri.LocalPath method.

private static string ConvertUriToPath(string fileName)
{
   Uri uri = new Uri(fileName);
   return uri.LocalPath;

   // Some people have indicated that uri.LocalPath doesn't 
   // always return the corret path. If that's the case, use
   // the following line:
   // return uri.GetComponents(UriComponents.Path, UriFormat.SafeUnescaped);
}
share|improve this answer

I looked for an answer a lot, and the most popular answer is using Uri.LocalPath. But System.Uri fails to give correct LocalPath if the Path contains “#”. Details are here.

My solution is:

private static string ConvertUriToPath(string fileName)
{
   Uri uri = new Uri(fileName);
   return uri.LocalPath + Uri.UnescapeDataString(uri.Fragment).Replace('/', '\\');
}
share|improve this answer

Can you just use Assembly.Location?

share|improve this answer
I can't use Assembly.Location because it's non-static and the method where I'd need to make the call from is static. – Scott A. Lawrence Nov 10 '08 at 22:16
Assembly.Location may not be what you're looking for, but it's not because it's a non-static method. Remember that you can instantiate new object within a static member. – akmad Nov 12 '08 at 15:11
Assembly.Current.Location or Assembly.GetExecutingAssembly().Location – Owen Johnson Apr 29 at 19:03

Location can be different to CodeBase. E.g. for files in ASP.NET it likely to be resolved under c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET. See "Assembly.CodeBase vs. Assembly.Location" http://blogs.msdn.com/suzcook/archive/2003/06/26/57198.aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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