2013年11月27日
摘要: //修改文件内容的方法(多少行,修改为的内容,文件路径) public void EditFile(int curLine, string newLineValue, string patch) { FileStream fs = new FileStream(patch, FileMode.Open, FileAccess.Read); StreamReader sr = new StreamReader(fs, Encoding.GetEncoding("utf-8")); string lin... 阅读全文
posted @ 2013-11-27 13:18 Q11三工鸟yue 阅读(2009) 评论(0) 推荐(0) 编辑