如何在批处理文件中附加到文件名

时间:2017-05-18 21:35:36

标签: batch-file

我这样调用我的批处理文件

"c:\mybat.bat" "c:\inputfile.txt"

我想将输出重定向到"c:\inputfile_new.txt"

这是我的蝙蝠

@echo off
"c:\myexe.exe" %1 > ????

如何将_new添加到文件名?

1 个答案:

答案 0 :(得分:0)

像这样:

@Echo Off
"C:\myexe.exe" "%~1">"%~dpn1_new%~x1"