Datasets:

Languages:
Chinese
Tags:
Not-For-All-Audiences
License:
Limour's picture
白日梦的构想图
256ec7d verified
raw
history blame
365 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