# Conflicts: # src/SolutionInfo.cs # src/Umbraco.Core/Configuration/GlobalSettings.cs # src/Umbraco.Core/IO/SystemDirectories.cs # src/Umbraco.Core/Runtime/MainDom.cs # src/Umbraco.Core/Scoping/ScopeProvider.cs # src/Umbraco.Core/Services/IIconService.cs # src/Umbraco.Examine.Lucene/UmbracoExamineIndex.cs # src/Umbraco.Infrastructure/Runtime/SqlMainDomLock.cs # src/Umbraco.Infrastructure/Scoping/Scope.cs # src/Umbraco.Tests.Integration/Umbraco.Infrastructure/Persistence/LocksTests.cs # src/Umbraco.Tests/LegacyXmlPublishedCache/LegacyBackgroundTask/BackgroundTaskRunner.cs # src/Umbraco.Tests/Scoping/ScopeTests.cs # src/Umbraco.Tests/Services/ThreadSafetyServiceTest.cs # src/Umbraco.Web.BackOffice/Controllers/BackOfficeServerVariables.cs # src/Umbraco.Web.BackOffice/Controllers/IconController.cs # src/Umbraco.Web.BackOffice/Services/IconService.cs # src/Umbraco.Web.UI.NetCore/umbraco/UmbracoBackOffice/Default.cshtml # src/Umbraco.Web/Editors/BackOfficeController.cs # src/Umbraco.Web/Editors/BackOfficeModel.cs # src/Umbraco.Web/Editors/BackOfficePreviewModel.cs # src/Umbraco.Web/Editors/PreviewController.cs
59 lines
1.9 KiB
C#
59 lines
1.9 KiB
C#
namespace Umbraco.Cms.Core
|
|
{
|
|
public static partial class Constants
|
|
{
|
|
public static class SystemDirectories
|
|
{
|
|
/// <summary>
|
|
/// The aspnet bin folder
|
|
/// </summary>
|
|
public const string Bin = "~/bin";
|
|
|
|
// TODO: Shouldn't this exist underneath /Umbraco in the content root?
|
|
public const string Config = "~/config";
|
|
|
|
/// <summary>
|
|
/// The Umbraco folder that exists at the content root.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This is not the same as the Umbraco web folder which is configurable for serving front-end files.
|
|
/// </remarks>
|
|
public const string Umbraco = "~/umbraco";
|
|
|
|
/// <summary>
|
|
/// The Umbraco data folder in the content root
|
|
/// </summary>
|
|
public const string Data = Umbraco + "/Data";
|
|
|
|
/// <summary>
|
|
/// The Umbraco temp data folder in the content root
|
|
/// </summary>
|
|
public const string TempData = Data + "/TEMP";
|
|
|
|
public const string TempFileUploads = TempData + "/FileUploads";
|
|
|
|
public const string TempImageUploads = TempFileUploads + "/rte";
|
|
|
|
public const string Install = "~/install";
|
|
|
|
public const string AppPlugins = "/App_Plugins";
|
|
public static string AppPluginIcons => "/Backoffice/Icons";
|
|
|
|
public const string MvcViews = "~/Views";
|
|
|
|
public const string PartialViews = MvcViews + "/Partials/";
|
|
|
|
public const string MacroPartials = MvcViews + "/MacroPartials/";
|
|
|
|
public const string Packages = Data + "/packages";
|
|
|
|
public const string Preview = Data + "/preview";
|
|
|
|
/// <summary>
|
|
/// The default folder where Umbraco log files are stored
|
|
/// </summary>
|
|
public const string LogFiles = Umbraco + "/Logs";
|
|
}
|
|
}
|
|
}
|