Asp.net获取当前目录的方法小结
程序员文章站
2024-03-01 17:40:34
方法一:
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("/");
我推荐使用第二种