简体   繁体   中英

How to get physical path of a website/app

How do I get the physical path of a website (for example "MyWebSite") from C#? My server is IIS 7.

Using msdeploy from c#, I have the following code:

var deployBaseOptions = new DeploymentBaseOptions
{
    ComputerName = connectOption.UrlPublishing,
    UserName = connectOption.UserName,
    Password = connectOption.Password,
    AuthenticationType = "Basic",
};

Use Server.MapPath

ie var path = Server.MapPath("~");

you can use the following:

var path=HttpContext.Current.Server.MapPath.Tostring();

Reference here

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM