Create missing series folders on disk scan (if enabled)

New: Option to create missing series folders during disk scans
This commit is contained in:
Mark McDowall 2013-11-18 22:25:02 -08:00
parent fd70346ab0
commit ea36c6ed47
6 changed files with 63 additions and 5 deletions

View file

@ -282,6 +282,14 @@ namespace NzbDrone.Core.Configuration
set { SetValue("EnableFailedDownloadHandling", value); }
}
public Boolean CreateEmptySeriesFolders
{
//TODO: only create if the parent folder exists (check first)
get { return GetValueBoolean("CreateEmptySeriesFolders", false); }
set { SetValue("CreateEmptySeriesFolders", value); }
}
public string DownloadClientWorkingFolders
{
get { return GetValue("DownloadClientWorkingFolders", "_UNPACK_|_FAILED_"); }