欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

web api 记录部署IIS获取服务器地址的类型

程序员文章站 2023-10-28 23:03:22
获取服务器地址类型分多种,以下记录 1、HttpContext.Current.Server.MapPath("~/File") 返回的值为 D:\3Project\Code\MobileService\WebApi\File。 本地服务:此路径为项目所在磁盘地址根目录。 部署服务器:为部署文件所在 ......

获取服务器地址类型分多种,以下记录

1、httpcontext.current.server.mappath("~/file")

返回的值为 d:\3project\code\mobileservice\webapi\file。

本地服务:此路径为项目所在磁盘地址根目录。

部署服务器:为部署文件所在磁盘文件夹;

2、system.web.hosting.hostingenvironment.mappath("/file/")

返回值为d:\3project\code\mobileservice\webapi\file。

服务器:c:\inetpub\wwwroot\file\微信图片_20180814161310.pdf

3、system.appdomain.currentdomain.basedirectory

返回的值为 d:\3project\code\mobileservice\webapi\file。

本地服务:d:\3project\code\mobileservice\webapi\file。

部署服务器:为部署文件所在磁盘文件夹;