标签: c# .net-4.0
在C#代码中,如果我仅通过文件名引用文件,则不会从本地文件夹中读取它。相反,它引用c:\windows\system32\inetsrv\并抛出FileNotFoundException。如何从本地文件夹中读取?
c:\windows\system32\inetsrv\
FileNotFoundException
答案 0 :(得分:2)
您可能指的是虚拟目录中的文件。使用Server.MapPath
Server.MapPath
filePath = Server.MapPath("~/path/relative/to/site/root/filename")