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