简体   繁体   中英

How to append to filename in batch file

I call my batch file like so

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

I want to redirect the output to "c:\\inputfile_new.txt"

Here is my bat

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

How can I add _new to the filename?

Like this:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM