C#判断文件夹是否存在不存在就创建
电脑版发表于:2020/6/17 13:29
string path = @"D:\作业提交\";
if (Directory.Exists(path) == false)
{
Directory.CreateDirectory(path);
}string path = @"D:\作业提交\";
if (Directory.Exists(path) == false)
{
Directory.CreateDirectory(path);
}