diff --git a/ICD.Common.Utils/PathUtils.cs b/ICD.Common.Utils/PathUtils.cs
index b9fbd72..c877b4a 100644
--- a/ICD.Common.Utils/PathUtils.cs
+++ b/ICD.Common.Utils/PathUtils.cs
@@ -279,6 +279,16 @@ namespace ICD.Common.Utils
return Join(ProgramConfigPath, local);
}
+ ///
+ /// Appends the local path to the program data path.
+ ///
+ ///
+ public static string GetProgramDataPath(params string[] localPath)
+ {
+ string local = Join(localPath);
+ return Join(ProgramDataPath, local);
+ }
+
///
/// Returns true if the given path exists.
///