我在一个文件夹中有一个txt文件,我想用相应的增量号码将相同的txt文件复制并粘贴到同一个文件夹中50次。
示例:
现有的txt文件=。 Mytext.txt
然后粘贴如下: MYTEXT-0001.txt MYTEXT-0002.txt ... MYTEXT-0050.txt 等...
请你们帮助我做这件事。
感谢您的帮助。 感谢。
答案 0 :(得分:1)
<div id="chartdiv-{{$scope.name}}"></div>
答案 1 :(得分:0)
粘贴它是不可能的...这意味着你必须将你的代码注入explorer.exe ......
但有一种更好的方法:
创建一个c#-Console应用程序并执行以下操作:
string dir = @"C:\Path\To\Dir";
for (int i = 0; i <= 1000; i++) {
// i will now be from 0 to 1000
// i.ToString("D4"). Converts the number to a string with padding '0's before... e.g: 0001, 0010, 0200, 1000...
string filename = "MyFile-" + i.ToString("D4") + ".txt";
using(var s = System.IO.File.Create(dir + "\\" + filename)) {
// If you want, you can write no content to the file using
// s.Write(...). or creating a System.IO.StreamWriter
}
}
使用MSDN可以找到更多信息。