Trying to make a batch file to recursively pack png images to flif files.
Here is the batch script -
Problem is that batch tries to run and partially succeeds in doing something but then get error message about flif stopped running.Code:FOR /R %%a IN (*.png) DO (flif -e -n %%a %%a.flif)
Any ideas how to get this batch file working properly, please?