讀取指定文件的路徑

在page是可以用Server.MapPath("test.xml")得到指定文件的路徑,但是在module中用這個是不允許的,不知道有沒其它方法得到指定文件的路徑

在module加个属性app_path,在global.asax后台代码的Application_Start里写
app_path = HttpContext.Current.Request.ApplicationPath.Replace("/", "\")
则test.xml的路径可以在module里用ApplicationMapPath + "\test.xml"取得

HttpContext.Current.Request.ApplicationPath.Replace("/", "\") + "\xml\serverbase.xml"
得到的路徑是:
\webconfig\xml\serverbase.xml

而Server.MapPath("xml/serverbase.xml")得到的路徑是
D:\程序\webconfig\xml\serverbase.xml

第一個用File.Exists(file_string)判斷說文件不存在。

换一下ApplicationPath,得到你想要的,关于路径的属性可多了,path,physicalpath....看看哪个转换得到得结果是你需要的


最終結果是:
HttpContext.Current.Request.MapPath("xml/serverbase.xml")

你可能感兴趣的:(文件)