首页 > 编程 > .NET > 正文

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

2024-07-10 13:15:34
字体:
来源:转载
供稿:网友

方法一:

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

方法二:

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

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

我推荐使用第二种

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表