- Timestamp:
- 2/3/2010 3:37:13 AM (2 years ago)
- Location:
- branches/eraser6/CodeReview
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
Eraser.Manager/DirectExecutor.cs (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/CodeReview
- Property svn:mergeinfo changed
/branches/eraser6/6.0 merged: 1721,1723,1730,1732,1734-1735,1737-1738,1740,1742 /trunk/eraser6 merged: 1706-1743
- Property svn:mergeinfo changed
-
branches/eraser6/CodeReview/Eraser.Manager/DirectExecutor.cs
r1709 r1745 275 275 throw; 276 276 } 277 catch (ThreadAbortException) 278 { 279 } 277 280 catch (Exception e) 278 281 { … … 417 420 fsManager.EraseClusterTips(VolumeInfo.FromMountPoint(target.Drive), 418 421 method, task.Log, searchProgress, eraseProgress); 419 } 420 422 tipProgress.MarkComplete(); 423 } 424 425 bool lowDiskSpaceNotifications = Shell.LowDiskSpaceNotificationsEnabled; 421 426 info = info.CreateSubdirectory(Path.GetFileName( 422 427 FileSystem.GenerateRandomFileName(info, 18))); … … 427 432 if (info.IsCompressed()) 428 433 info.Uncompress(); 434 435 //Disable the low disk space notifications 436 Shell.LowDiskSpaceNotificationsEnabled = false; 429 437 430 438 ProgressManager mainProgress = new ProgressManager(); … … 515 523 fsManager.DeleteFolder(info); 516 524 tempFiles.Completed = tempFiles.Total; 525 526 //Reset the low disk space notifications 527 Shell.LowDiskSpaceNotificationsEnabled = lowDiskSpaceNotifications; 517 528 } 518 529
Note: See TracChangeset
for help on using the changeset viewer.
