复制代码 代码如下:
//判断文件路径是否存在,不存在则创建文件夹
if (!System.IO.Directory.Exists(@"D:\Export"))
{
System.IO.Directory.CreateDirectory(@"D:\Export");//不存在就创建目录
}
//判断文件是否存在
添加引用using System.IO;
if(File.Exists(@"文件路径"))
{
//存在
}
else
{
//不存在
}
时间: 2024-11-08 17:10:02