C#判断文件路径是否存在或者判断文件是否存在的方法
程序员文章站
2024-02-29 17:01:16
复制代码 代码如下: //判断文件路径是否存在,不存在则创建文件夹 if (!system.io.directory.exists(@"d:\export")) { sys...
复制代码 代码如下:
//判断文件路径是否存在,不存在则创建文件夹
if (!system.io.directory.exists(@"d:\export"))
{
system.io.directory.createdirectory(@"d:\export");//不存在就创建目录
}
//判断文件是否存在
添加引用using system.io;
if(file.exists(@"文件路径"))
{
//存在
}
else
{
//不存在
}