lepton icon indicating copy to clipboard operation
lepton copied to clipboard

please add wildcard support for Windows

Open StephanBusch opened this issue 9 years ago • 1 comments

please add wildcard support for windows so that whole directories or many files at once can be processed. Using Drag & Drop a folder on the executables did not work.

StephanBusch avatar Jul 27 '16 07:07 StephanBusch

Just use a batch script

here is a basic one that I am using

for /r %%i in (*.jpg *.jpeg) do (
lepton-slow-best-ratio.exe "%%i"&& (
	del "%%i"
	) || (
	pause
	)
)
PAUSE

If you don't want to delete the file, or don't care when it errors you can delete those lines from the batch script

winterNebs avatar Mar 03 '20 22:03 winterNebs