vote up 2 vote down star

I have a page something.aspx, with associated codebehind something.aspx.cs. In that codebehind, I want to know the filesystem location of something.aspx. Is there any convenient way to get it?

Update: I got several excellent answers, which unfortunately didn't work because of something else crazy I'm doing. I'm encoding some additional information on the URL I pass in, so it looks like this:

http://server/path/something.aspx/info1/info2/info3.xml

The server deals with this OK (and I'm not using querystring parameters to work around some other code that I didn't write). But when I call Server.MapPath(Request.Url.ToString()) I get an error that the full URL with the 'info' segments isn't a valid virtual path.

flag

Set a breakpoint on the MapPath line and then inspect the properties of Request.Url. You'll find a lot of useful stuff in there. – John Sheehan Oct 9 '08 at 17:34
Will do, thanks. – Bruce Oct 9 '08 at 17:42

4 Answers

vote up 3 vote down check

Request.PhysicalPath

link|flag
Winner! The Request object is so poorly organized it's hard to remember all the different places for stuff. – John Sheehan Oct 9 '08 at 17:38
That did the trick, thanks! The actual line I ended up with is: string servicesPath = Path.GetDirectoryName(Request.PhysicalPath) + @"\services\"; – Bruce Oct 9 '08 at 17:56
vote up 5 vote down
// File path
string absoluteSystemPath = Server.MapPath("~/relative/path.aspx");
// Directory path
string dir = System.IO.Path.GetDirectoryName(absoluteSystemPath);
// Or simply
string dir2 = Server.MapPath("~/relative");
link|flag
this implies I know what the 'relative' part is, but that's what I'm trying to calculate. – Bruce Oct 9 '08 at 17:31
vote up 3 vote down

Server.MapPath is among the most used way to do it.

string physicalPath = Server.MapPath(Request.Url);
link|flag
vote up -1 vote down

Server.MapPath( Request.AppRelativeCurrentExecutionFilePath )

link|flag

Your Answer

Get an OpenID
or

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