I have an ASP.NET MVC 3 app that is using PortableAreas (don't ask me why - I don't know). I have a need to map from an area's url to the actual folder on the system.
Here's my actual folder structure:
C:\project |-web.app\ |-|-Areas\ |-web.locations.area\ |-|-content\ |-|-|-scripts\ |-|-views\
The IIS setup has the web app mapped to C:/project. There's a directory called "Areas" in the project. This folder has a virtual directory in it, in IIS, called "locations" which points to C:\project\web.locations.area\
Within a view in the area, using Razor syntax, I'm trying to do a Server.MapPath and it fails every time:
@Server.MapPath("~/locations/scripts/my.script.js")
This always resolves to "C:\project\web.app\locations\scripts\my.script.js" which is not correct. The file actually sits at "C:\project\web.locations.area\content\scripts\my.script.js".
When I call @Url.Content("~/locations/scripts/my.script.js") it resolves to the correct URL as I expect. This url actually does exist when I hit it through my browser, and the script file is correctly served from IIS / my asp.net web app.
Why is the call to Server.MapPath producing the wrong results? How can I map a path in a PortableArea to the actual path on the file system?