Asp.net获取当前目录的方法小结

网络编程 2021-07-04 22:40www.168986.cn编程入门
有时候可能出现找不到类的情况,请引用System.Web.dll

方法一

string sPath = System.IO.Path.GetDirectoryName(Page.Request.PhysicalPath)

方法二

string sPath = System.Web.HttpContext.Current.Request.MapPath("/")                                         

方法三
string sPath = Page.Server.MapPath("/");

我推荐使用第二种

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by