exist, exit.120 if (!File.Exists(Path))121 return;122123 //Create the progress manager.124 Progress = new SteppedProgressManager();125126 try127 {128 //Depending on whether the path is a file or directory, execute the129 //correct fucntion.130 if ((File.GetAttributes(Path) & FileAttributes.Directory) != 0)131 {132 DirectoryInfo info = new DirectoryInfo(Path);133 CopyDirectory(info);134 }135 else13