mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Moving file from same source/destination no longer just deletes the file.
This commit is contained in:
parent
1c99541731
commit
19c087e50a
2 changed files with 24 additions and 4 deletions
|
@ -125,14 +125,20 @@ namespace NzbDrone.Common
|
|||
File.Delete(path);
|
||||
}
|
||||
|
||||
public virtual void MoveFile(string sourcePath, string destinationPath)
|
||||
public virtual void MoveFile(string source, string destination)
|
||||
{
|
||||
if (FileExists(destinationPath))
|
||||
if (PathEquals(source, destination))
|
||||
{
|
||||
DeleteFile(destinationPath);
|
||||
Logger.Warn("Source and destination can't be the same {0}", source);
|
||||
return;
|
||||
}
|
||||
|
||||
File.Move(sourcePath, destinationPath);
|
||||
if (FileExists(destination))
|
||||
{
|
||||
DeleteFile(destination);
|
||||
}
|
||||
|
||||
File.Move(source, destination);
|
||||
}
|
||||
|
||||
public virtual void DeleteFolder(string path, bool recursive)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue