定义文件状态枚举:0-路径为空,1-存在文件,2-路径不为空,但文件不存在 public enum FileExsitStatus { NoPath=0, FileExsit=1, NoFile=2 }
利用File文件操作类判断文件是否存在:
////// 判断指定路径的文件是否存在 /// /// 文件路径 ///0-路径为空,1-存在文件,2-路径不为空,但文件不存在 protected FileExsitStatus IsFileExsit(object path) { if (path == null || Convert.IsDBNull(path) || string.IsNullOrEmpty(path.ToString())) { return FileExsitStatus.NoPath; } else { if (System.IO.File.Exists(Server.MapPath(@path.ToString()))) { return FileExsitStatus.FileExsit; } return FileExsitStatus.NoFile; } }
需要注意的是,File类判断文件的路径必须为物理路径,相对路径返回的永远为false.