public void Execute() { shell.Copy(); shell.Zip(); shell.Delete(); shell.Move(); }
public static void DeleteIfExistsAndCreateDirectory(this IShell shell, AbsoluteDirectoryPath directory) { if (shell.Exists(directory)) { shell.Delete(directory); } shell.Create(directory); }