Skip to content
This repository has been archived by the owner on Feb 14, 2023. It is now read-only.

please add wildcard support for Windows #51

Open
StephanBusch opened this issue Jul 27, 2016 · 1 comment
Open

please add wildcard support for Windows #51

StephanBusch opened this issue Jul 27, 2016 · 1 comment

Comments

@StephanBusch
Copy link

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.

@winterNebs
Copy link

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

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants