这是一个文本文件txtfile.txt
line1
line2
add after this line
line4
etc
etc
我想创建一个批处理文件,它可以add after this line
在用户输入信息后添加一行。保持add after this line
原样。
例子:
enter info: asdf
文件变成
line1
line2
add after this line
asdf
line4
etc
etc
我认为基本过程是遍历文件复制它,当我找到该行时,添加该行,然后遍历其余部分。我想知道怎么做。