if (Directory.Exists(temp_path) == false)//如果不存
{
//在就创建file文件夹
Directory.CreateDirectory(temp_path);
}
if (!System.IO.File.Exists(filename))
{
System.IO.File.Create(filename);//创建该文件
}
2022-04-05 08:15:36
if (Directory.Exists(temp_path) == false)//如果不存
{
//在就创建file文件夹
Directory.CreateDirectory(temp_path);
}
if (!System.IO.File.Exists(filename))
{
System.IO.File.Create(filename);//创建该文件
}