score:1

open abstractpool.java file, in line 117 you can find:

    collection<file> oldfiles = fileutils.listfiles(tempdir.outputdir.tofile(),filter, null);
    for (file file : oldfiles) {
        file.delete();
    }

simply delete that lines, and should be enough. or above that lines you can set higher fixedrate.

score:1

in addition to pawel's answer you can also change the time limit in the app-convert.properties file:

# keep files in the temp folder for a certain retentiontime, defined in miliseconds
retentiontime = 30000 

that is the default. so, 30s makes sense.


Related Query

More Query from same tag