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

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

程序员文章站 2024-02-28 22:32:46
方法一: string spath = system.io.path.getdirectoryname(page.request.physicalpath) 方法二:...

方法一:

string spath = system.io.path.getdirectoryname(page.request.physicalpath)

方法二:

string spath = system.web.httpcontext.current.request.mappath("/")                                         

方法三:
string spath = page.server.mappath("/");

我推荐使用第二种