diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2020-04-26 16:02:09 -0400 |
|---|---|---|
| committer | Joshua M. Boniface <joshua@boniface.me> | 2020-04-26 16:03:58 -0400 |
| commit | a3d048a0d9806759683fa417edd57c2b0170529c (patch) | |
| tree | cbe6ec323d939075c0a44cc8893ac8e2b411b4b1 /MediaBrowser.Controller/IServerApplicationPaths.cs | |
| parent | 21a6c2e1e266ea9d164b31aa492e53ec3d0e068e (diff) | |
Merge pull request #2990 from mark-monteiro/create-missing-foldersv10.5.5
Create Missing Data Folders
(cherry picked from commit 00d8983d7cec0594efac8d85a927dba3c3391bdf)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
Diffstat (limited to 'MediaBrowser.Controller/IServerApplicationPaths.cs')
| -rw-r--r-- | MediaBrowser.Controller/IServerApplicationPaths.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/IServerApplicationPaths.cs b/MediaBrowser.Controller/IServerApplicationPaths.cs index 5d7c60910..c35a22ac7 100644 --- a/MediaBrowser.Controller/IServerApplicationPaths.cs +++ b/MediaBrowser.Controller/IServerApplicationPaths.cs @@ -71,7 +71,12 @@ namespace MediaBrowser.Controller string UserConfigurationDirectoryPath { get; } /// <summary> - /// Gets the internal metadata path. + /// Gets the default internal metadata path. + /// </summary> + string DefaultInternalMetadataPath { get; } + + /// <summary> + /// Gets the internal metadata path, either a custom path or the default. /// </summary> /// <value>The internal metadata path.</value> string InternalMetadataPath { get; } |
