首页 > 其他 > 详细

C# 判断路径是否存在

时间:2014-05-24 05:40:36      阅读:458      评论:0      收藏:0      [点我收藏+]
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.  

  

C# 判断路径是否存在,布布扣,bubuko.com

C# 判断路径是否存在

原文:http://www.cnblogs.com/the-three/p/3736450.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!