Files
synology-thumbgen/run_thumbgen_prompt.bat
2025-06-27 09:01:51 -06:00

8 lines
192 B
Batchfile

@echo off
set /p NASDIR=Enter the full path to your NAS directory:
if "%NASDIR%"=="" (
echo No directory provided. Exiting.
exit /b
)
python psthumbgen.py --directory "%NASDIR%"
pause