Datasets:

Languages:
Chinese
Tags:
Not-For-All-Audiences
License:
Limour's picture
Upload 3 files
f6d6399 verified
raw
history blame
309 Bytes
@echo off
setlocal enabledelayedexpansion
set "source_dir=\\tsclient\E\tmp\kiss\scn"
set "tool_path=D:\app\FreeMoteToolkit\PsbDecompile.exe"
for %%f in ("%source_dir%\*.scn") do (
set "file_path=%%f"
echo Processing !file_path!
"%tool_path%" "!file_path!"
)
echo All files processed.
endlocal