摘要: namespace 文件的创建 { class Program { static void Main(string[] args) { string path = @"C:\"; if (!File.Exists(path + "ww.txt")) { FileStream fs = File.Cr 阅读全文
posted @ 2022-05-30 16:04 sbwynnss 阅读(84) 评论(0) 推荐(0)
摘要: namespace 判断某文件是否存在 { class Program { static void Main(string[] args) { string path = "C:\\tt.jpg"; bool ph= File.Exists(path);//判断是否有这个文件 if (ph) { C 阅读全文
posted @ 2022-05-30 15:27 sbwynnss 阅读(102) 评论(0) 推荐(0)