mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-15 17:43:49 -07:00
Create missing series folders on disk scan (if enabled)
New: Option to create missing series folders during disk scans
This commit is contained in:
parent
fd70346ab0
commit
ea36c6ed47
6 changed files with 63 additions and 5 deletions
|
@ -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_"); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue