日期:2014-05-17 浏览次数:20792 次
string path = "C:\\test.txt";
if (File.Exists(path)) ///如果文件存在,那么删除文件
File.Delete(path);
FileStream fs = File.Open(path, FileMode.Create); ///这里第二个表示如果文件不存在,则重新建立一个新的
///FileStream fs = File.Open(path, FileMode.Append); ///如果要追加内容时用这个
fs.Write(bs, 0, bs.Length); ///这里的bs是一个数组byte[]
fs.Close();
string str = "C:\\test.txt";
&nb