return false;\r
}\r
\r
+\r
+ if (!DriveUtilities.HasMinimumDiskSpace(\r
+ this.Destination,\r
+ this.userSettingService.GetUserSetting<long>(UserSettingConstants.PauseOnLowDiskspaceLevel)))\r
+ {\r
+ this.errorService.ShowMessageBox(Resources.Main_LowDiskspace, Resources.Error, MessageBoxButton.OK, MessageBoxImage.Error);\r
+ return false;\r
+ }\r
+\r
// Sanity check the filename\r
if (!string.IsNullOrEmpty(this.Destination) && FileHelper.FilePathHasInvalidChars(this.Destination))\r
{\r
return;\r
}\r
\r
- if (!DriveUtilities.HasMinimumDiskSpace(\r
- this.Destination,\r
- this.userSettingService.GetUserSetting<long>(UserSettingConstants.PauseOnLowDiskspaceLevel)))\r
- {\r
- this.errorService.ShowMessageBox(Resources.Main_LowDiskspace, Resources.Error, MessageBoxButton.OK, MessageBoxImage.Error);\r
- return;\r
- }\r
-\r
// Create the Queue Task and Start Processing\r
if (this.AddToQueue())\r
{\r