1
2
3
4
5
6
7 |
定义文件状态枚举:0-路径为空,1-存在文件,2-路径不为空,但文件不存在 public
enum FileExsitStatus { NoPath=0, FileExsit=1, NoFile=2 } |
利用File文件操作类判断文件是否存在:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 |
/// <summary> /// 判断指定路径的文件是否存在 /// </summary> /// <param name="path">文件路径</param> /// <returns>0-路径为空,1-存在文件,2-路径不为空,但文件不存在</returns> 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.
原文地址:http://www.cnblogs.com/the-three/p/3736450.html