欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C#中如何判断电脑上的某个文件是否存在

程序员文章站 2022-06-10 20:27:39
...

背景

小伙伴在使用C#开发的时候,可能需要判断电脑中是存在某个文件

代码

直接使用File.Exists就行

using System.IO;
namespace _02FileExist
{
    class Program
    {
        static void Main(string[] args)
        {
            //文件地址
            string filelocation = @"D:\Program Files\xxx.txt";
            //检测是否存在
            bool exist= File.Exists(filelocation);
        }
    }
}

注意事项

大家好,我是黑夜の骑士,欢迎大家关注我的博客,笔者将持续输出revit二次开发以及编程干货