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