From ef69847645aa0916071070b8fc1a81ccb7e9fe7c Mon Sep 17 00:00:00 2001 From: Andy Butland Date: Tue, 14 Sep 2021 11:36:01 +0200 Subject: [PATCH] Added a constant for reference to the umbraco/Licenses folder. --- src/Umbraco.Core/Constants-SystemDirectories.cs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Core/Constants-SystemDirectories.cs b/src/Umbraco.Core/Constants-SystemDirectories.cs index e0978c58d6..80b49781ec 100644 --- a/src/Umbraco.Core/Constants-SystemDirectories.cs +++ b/src/Umbraco.Core/Constants-SystemDirectories.cs @@ -21,12 +21,17 @@ namespace Umbraco.Cms.Core public const string Umbraco = "~/umbraco"; /// - /// The Umbraco data folder in the content root + /// The Umbraco data folder in the content root. /// public const string Data = Umbraco + "/Data"; /// - /// The Umbraco temp data folder in the content root + /// The Umbraco licenses folder in the content root. + /// + public const string Licenses = Umbraco + "/Licenses"; + + /// + /// The Umbraco temp data folder in the content root. /// public const string TempData = Data + "/TEMP";