vote up 0 vote down star
1

I'm trying to convert "~/Uploads/Images/" to an absolute path I can create a FileStream from. I've tried VirtualPathUtility and Path.Combine but nothing seems to give me the right path. The closest I got was VirtualPathUtility.ToAppRelative, but that was just the file's location as a direct child of C:.

There must be a way to do this.

flag

74% accept rate
Do you want an absolute path or absolute url? – tvanfosson Jul 19 at 14:04

1 Answer

vote up 3 vote down check

You are looking for the MapPath method.

// get the path in the local file system that corresponds to ~/Uploads/Images
string localPath = HttpContext.Current.Server.MapPath("~/Uploads/Images/");

Use it together with Path.Combine to create a file path:

string fileName = Path.Combine(
                      HttpContext.Current.Server.MapPath("~/Uploads/Images/"),
                      "filename.ext");
using (FileStream stream = File.OpenRead(fileName))
{
   // read the file
}
link|flag
That's great, thanks. – Echilon Jul 19 at 15:14

Your Answer

Get an OpenID
or

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