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();                  
        }
    }
}

  

posted on 2022-05-30 16:04  sbwynnss  阅读(84)  评论(0)    收藏  举报