Files
synology-thumbgen/run_thumbgen_prompt.bat

8 lines
192 B
Batchfile
Raw Normal View History

2025-06-27 09:01:51 -06:00
@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