用于循环目录中的txt文件

时间:2017-03-08 18:49:46

标签: batch-file

我想在每个文件的txt文件目录中添加一行特定的行。以下是我正在使用的代码:

For %%f in (*.txt) do
echo "Computer String : %%f" > newFile.txt
type %%f >> newFile.txt
type newFile.txt > %%f

但是,只要执行此操作,就不会发生任何变化。有什么建议 ?

0 个答案:

没有答案