hi!
A few days ago I posted a few lines of batch script in the chat for listing videos with missing funscripts which seems to be useful to many of you. I thought it would be good to make a thread for it so we can move the discussion here and enable people to find it later. I made an improvement to the script as well. It now also outputs the files that are OK and supports sub-folders.
Script:
@echo off
for /R . %%F in (*.mp4) do (if exist "%%~pnF.funscript" (echo [OK] %%F))
for /R . %%F in (*.mp4) do (if not exist "%%~pnF.funscript" (echo [MISSING] %%F))
pause
Instructions:
- Copy the script above
- Paste in notepad
- Save as a *.bat file to your funscript folder
- Run the script as you would a .exe
Example output: