09 2013 档案
摘要:http://blog.sina.com.cn/s/blog_4cf05f9a01015sat.html
阅读全文
摘要:实例:在c#中 在D盘下面创建一个abc的文件夹,然后在文件夹里面创建一个123.txt的文档string path = @"D:\abc";string fileName = "123.txt";if (!Directory.Exists(path)){Directory.CreateDirectory(path);}if (!File.Exists(path + "\\" + fileName)){File.Create(path + "\\" + fileName);}
阅读全文

浙公网安备 33010602011771号