public void EnqueueFile(string file)
{
FileInfo fi = new FileInfo(file);
if (fi.Exists)
{
Worker.I.EnqueTTD(new Model_ThingsToDelete()
{
FullPathName = file,
IsWhitelisted = false,
OverWrite = false,
WhatKind = THINGS_TO_DELETE.file,
command = COMMANDS.sqlite_vacuum,
search = SEARCH.file,
level = Action.parent_option.level,
cleaner_name = Action.parent_option.label
});
}
}