Datasets:

Languages:
Chinese
Tags:
Not-For-All-Audiences
License:
Limour's picture
人鱼苹果晴菜花,还差苹果妹
4274f0b 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