从C#中的本地文件夹读取

时间:2011-11-21 04:24:09

标签: c# .net-4.0

在C#代码中,如果我仅通过文件名引用文件,则不会从本地文件夹中读取它。相反,它引用c:\windows\system32\inetsrv\并抛出FileNotFoundException。如何从本地文件夹中读取?

1 个答案:

答案 0 :(得分:2)

您可能指的是虚拟目录中的文件。使用Server.MapPath

filePath = Server.MapPath("~/path/relative/to/site/root/filename")