1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Fixed: Error handling when cannot create folder in Recycling Bin

(cherry picked from commit c05fccb90d64d92836603b55d4bd30d5cbdb96a5)
This commit is contained in:
Robin Dadswell 2021-01-17 18:27:58 +00:00 committed by Qstick
parent 7836246b05
commit 92f3a18e17

View File

@ -88,7 +88,16 @@ public void DeleteFile(string path, string subfolder = "")
var destinationFolder = Path.Combine(recyclingBin, subfolder);
var destination = Path.Combine(destinationFolder, fileInfo.Name);
_diskProvider.CreateFolder(destinationFolder);
try
{
_logger.Debug("Creating folder [0]", destinationFolder);
_diskProvider.CreateFolder(destinationFolder);
}
catch (IOException e)
{
_logger.Error(e, "Unable to create the folder '{0}' in the recycling bin for the file '{1}'", destinationFolder, fileInfo.Name);
throw;
}
var index = 1;
while (_diskProvider.FileExists(destination))