2020-12-08 10:42:26 +11:00
|
|
|
namespace Umbraco.Core
|
2019-11-13 11:26:03 +01:00
|
|
|
{
|
|
|
|
|
public static partial class Constants
|
|
|
|
|
{
|
|
|
|
|
public static class SystemDirectories
|
|
|
|
|
{
|
|
|
|
|
public const string Bin = "~/bin";
|
|
|
|
|
|
|
|
|
|
public const string Config = "~/config";
|
|
|
|
|
|
2020-12-08 10:42:26 +11:00
|
|
|
public const string Data = "~/Umbraco/Data";
|
2019-11-13 11:26:03 +01:00
|
|
|
|
|
|
|
|
public const string TempData = Data + "/TEMP";
|
|
|
|
|
|
|
|
|
|
public const string TempFileUploads = TempData + "/FileUploads";
|
|
|
|
|
|
|
|
|
|
public const string TempImageUploads = TempFileUploads + "/rte";
|
|
|
|
|
|
|
|
|
|
public const string Install = "~/install";
|
|
|
|
|
|
2020-11-03 14:14:01 +01:00
|
|
|
public const string AppPlugins = "/App_Plugins";
|
2019-11-13 11:26:03 +01:00
|
|
|
|
|
|
|
|
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";
|
2020-08-26 08:05:15 +02:00
|
|
|
|
2020-12-08 10:42:26 +11:00
|
|
|
// TODO: This doesn't seem right?
|
2020-08-26 08:05:15 +02:00
|
|
|
public const string LogFiles= "~/Logs";
|
2019-11-13 11:26:03 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|