string path = @"D:\abc";
string fileName = "123.txt";
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}
if (!File.Exists(path + "\\" + fileName))
{
File.Create(path + "\\" + fileName);
}
2021-08-31 09:37:20
string path = @"D:\abc";
string fileName = "123.txt";
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}
if (!File.Exists(path + "\\" + fileName))
{
File.Create(path + "\\" + fileName);
}