mCleaner.Logics.Commands.CommandLogic_SQLiteVacuum.EnqueueFile C# (CSharp) Method

EnqueueFile() public method

public EnqueueFile ( string file ) : void
file string
return void
        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
                });
            }
        }