您好我在一个位置有多个文本文件,它们的名称如下所示: -
A_L_PRTD_021345.txt
,A_L_PRTD_432124
等等......
我想将内容附加到单个文件中,并希望将单个文件重命名为L_PRTD_Currentdate>.txt
怎么可能?
你能为它展示一些代码吗?
答案 0 :(得分:1)
首先使用File.ReadAllLines(fileName) ;
来阅读每个文件
然后创建一个文件并在其中附加其他文件的内容
string[] contents1 = File.ReadAllLines(fileName1) ;
string[] contents2 = File.ReadAllLines(fileName2) ;
File.Create(newFileNameHere) ;
File.WriteAllLines(newFileNameHere, contents1) ;
File.AppendAllLines(newFileNameHere, contents2) ;
依旧......
如果需要帮助,请查看以下功能文档: -
http://msdn.microsoft.com/en-us/library/92e05ft3(v=vs.110).aspx
http://msdn.microsoft.com/en-us/library/dd383691(v=vs.110).aspx
http://msdn.microsoft.com/en-us/library/s2tte0y1(v=vs.110).aspx