Datasets:

Languages:
Chinese
Tags:
Not-For-All-Audiences
License:
Limour's picture
Upload 8 files
93d319c verified
raw
history blame
331 Bytes
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