Fixed DownloadFile when file already exists
This commit is contained in:
parent
b764c44318
commit
9ed0f9eee8
|
@ -249,6 +249,10 @@ namespace NzbDrone.Common.Http
|
|||
var response = Get(request);
|
||||
}
|
||||
stopWatch.Stop();
|
||||
if (File.Exists(fileName))
|
||||
{
|
||||
File.Delete(fileName);
|
||||
}
|
||||
File.Move(fileNamePart, fileName);
|
||||
_logger.Debug("Downloading Completed. took {0:0}s", stopWatch.Elapsed.Seconds);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue