File size: 331 Bytes
93d319c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
chcp 65001
@echo off
setlocal enabledelayedexpansion
set "source_dir=E:\tmp\死馆\scn"
set "tool_path=D:\scn\FreeMoteToolkit\PsbDecompile.exe"
echo %source_dir%
for %%f in ("%source_dir%\*.scn") do (
set "file_path=%%f"
echo Processing !file_path!
"%tool_path%" "!file_path!"
)
echo All files processed.
endlocal
|