mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[DATFromDir] This needs to be wrapped in try/catch
This commit is contained in:
@@ -297,7 +297,11 @@ namespace SabreTools
|
||||
// Cue to delete the file if it's a copy
|
||||
if (_copyFiles && item != newItem)
|
||||
{
|
||||
Directory.Delete(newBasePath, true);
|
||||
try
|
||||
{
|
||||
Directory.Delete(newBasePath, true);
|
||||
}
|
||||
catch { }
|
||||
}
|
||||
|
||||
// Delete the sub temp directory
|
||||
|
||||
Reference in New Issue
Block a user