clear() does not delete queue files
Status: Beta
Brought to you by:
hahn
After running a queue file a while there a a lot of queue files in filesystem. Debugging shows that clear() doesn't find them because of an error in the filter class.
public boolean accept(final File dir, final String name) {
return name.toLowerCase().startsWith(base);
}
Needed to be
return name.toLowerCase().startsWith(base.toLowerCase());