diff --git a/MediaBrowser.Common.Implementations/BaseApplicationPaths.cs b/MediaBrowser.Common.Implementations/BaseApplicationPaths.cs
index d94d79c753..37bd622004 100644
--- a/MediaBrowser.Common.Implementations/BaseApplicationPaths.cs
+++ b/MediaBrowser.Common.Implementations/BaseApplicationPaths.cs
@@ -42,6 +42,11 @@ namespace MediaBrowser.Common.Implementations
}
}
+ ///
+ /// Gets the path to the system folder
+ ///
+ public string ProgramSystemPath { get { return Path.Combine(ProgramDataPath, "System"); }}
+
///
/// The _data directory
///
diff --git a/MediaBrowser.Common/Kernel/IApplicationPaths.cs b/MediaBrowser.Common/Kernel/IApplicationPaths.cs
index abb7836423..52c3b199d8 100644
--- a/MediaBrowser.Common/Kernel/IApplicationPaths.cs
+++ b/MediaBrowser.Common/Kernel/IApplicationPaths.cs
@@ -12,6 +12,12 @@ namespace MediaBrowser.Common.Kernel
/// The program data path.
string ProgramDataPath { get; }
+ ///
+ /// Gets the path to the program system folder
+ ///
+ /// The program data path.
+ string ProgramSystemPath { get; }
+
///
/// Gets the folder path to the data directory
///