标签: batch-file
我这样调用我的批处理文件
"c:\mybat.bat" "c:\inputfile.txt"
我想将输出重定向到"c:\inputfile_new.txt"
"c:\inputfile_new.txt"
这是我的蝙蝠
@echo off "c:\myexe.exe" %1 > ????
如何将_new添加到文件名?
_new
答案 0 :(得分:0)
像这样:
@Echo Off "C:\myexe.exe" "%~1">"%~dpn1_new%~x1"