Server.MapPath在mvc中不起作用

时间:2014-01-09 08:16:33

标签: c# asp.net-mvc asp.net-mvc-routing

我需要在文件夹路径中获取图像是否存在。 我使用以下代码:

bool isExists = System.IO.Directory.Exists(Server.MapPath(FolderPath + "Logo.png"));

但是如果文件存在,bool变量将返回false。

1 个答案:

答案 0 :(得分:6)

也许您应该使用File.Exists代替。

bool isExists = System.IO.File.Exists(Server.MapPath(FolderPath + "Logo.png"));