Fixed: Renaming Episodes will never overwrite existing files.

This commit is contained in:
Taloth Saldono
2014-07-31 00:00:55 +02:00
committed by Mark McDowall
parent 125e69da6d
commit e5e00fd346
5 changed files with 41 additions and 10 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ namespace NzbDrone.Common.Disk
void MoveFolder(string source, string destination);
void DeleteFile(string path);
void CopyFile(string source, string destination, bool overwrite = false);
void MoveFile(string source, string destination);
void MoveFile(string source, string destination, bool overwrite = false);
void DeleteFolder(string path, bool recursive);
string ReadAllText(string filePath);
void WriteAllText(string filename, string contents);