namespace 文件的创建
{
class Program
{
static void Main(string[] args)
{
string path = @"C:\";
if (!File.Exists(path + "ww.txt"))
{
FileStream fs = File.Create(path + "ww.txt");
Console.WriteLine("文件创建成功!");
fs.Close();
}
else
{
Console.WriteLine("没有创建文件,可能没有权限或者文件已经存在!");
}
Console.ReadKey();
}
}
}
浙公网安备 33010602011771号