Search code examples
c#asp.netiispathvirtual-directory

Get name of virtual directory?


I'm using Request.ApplicationPath to learn the name of the Virtual Directory in which I'm running. Is there a more reliable way?


Solution

  • Request.ApplicationPath is perfectly reliable way of getting the virtual directory and works always when you have the HttpContext and can ask for the Request data.

    For further processing and extracting parts of the path, take a look at the VirtualPathUtility class.