2011年7月31日
摘要: 如图:代码如下:View Code stringpath=@"c:\temp\MyTest.txt";stringpathCopy=@"c:\temp\MyTestCopy.txt";if(File.Exists(path)){File.Copy(path,pathCopy,true);File.Delete(path);} 阅读全文
posted @ 2011-07-31 01:09 wtq 阅读(476) 评论(0) 推荐(0) 编辑
摘要: 1.利用File.CreateText()来创建文本文件。代码如下:代码如下:View Code staticvoidMain(string[]args){stringpath=@"c:\temp\MyTest.txt";if(!File.Exists(path)){try{using(StreamWritersw=File.CreateText(path)){sw.WriteLine("thisismyname");sw.WriteLine("whataboutyou");sw.Write("?Ifine");} 阅读全文
posted @ 2011-07-31 00:59 wtq 阅读(395) 评论(0) 推荐(0) 编辑