我试图执行一次Fortran应用程序100次,并在每次迭代时保存输出文件;所以我想写一个批处理脚本。应用程序的输入必须具有以下格式:“ Input.txt”。但是我无法更改输入文件的格式,因此在每次迭代时,我都将文件重命名为“ Input.txt”。现在的问题是我在第一次迭代后重复了。我想知道是否有更好的方法可以做到这一点。谢谢。
Batch_script
FOR /L %%i IN (1,1,4) DO (
rename "Input_1.txt" "Input.txt"
rename "Input_2.txt" "Input.txt"
rename "Input_3.txt" "Input.txt"
rename "Input_4.txt" "Input.txt"
Fortran_application.exe
rename "Output.txt" "Output_1.txt"
rename "Output.txt" "Output_2.txt"
rename "Output.txt" "Output_3.txt"
rename "Output.txt" "Output_4.txt"
)