cjiabing (甲兵时代)当前离线
荣誉版主
TOP
aries215 当前离线
三级士官
@echo off setlocal enabledelayedexpansion set tsr=%* if defined tsr ( for /f "tokens=*" %%a in ("!tsr!") do ( for %%i in (%%a) do if exist %%i title "%%~i"&player.exe "%%~i" ) ) pause复制代码
评分人数
@echo off :start cls echo. setlocal ENABLEDELAYEDEXPANSION set /p File=请拖入WAV文件: if defined File ( for /f "tokens=*" %%a in ("!File!") do ( for %%i in (%%a) do if "%%~xi"==".wav" "%~dp0yoyotu.exe" "ASIO4ALL v2" "%%~i" ) ) endlocal goto start复制代码