ArcWizard.Tasks.IO.DeleteFileTask.DeleteFileFrom C# (CSharp) Method

DeleteFileFrom() public method

public DeleteFileFrom ( string path ) : void
path string
return void
        public void DeleteFileFrom(string path)
        {
            if (!File.Exists(path)) return;

            Logger.WriteLine("Deleting file " + path);
            File.Delete(path);
        }
DeleteFileTask