Files
Umbraco-CMS/src/Umbraco.Core/IO/SystemFiles.cs

17 lines
496 B
C#
Raw Normal View History

2019-02-15 08:46:57 +01:00
using System.IO;
2018-06-29 19:52:40 +02:00
using Umbraco.Core.Configuration;
namespace Umbraco.Core.IO
{
public class SystemFiles
{
public static string TinyMceConfig => SystemDirectories.Config + "/tinyMceConfig.config";
// TODO: Kill this off we don't have umbraco.config XML cache we now have NuCache
2018-06-29 19:52:40 +02:00
public static string GetContentCacheXml(IGlobalSettings globalSettings)
{
2019-02-15 08:46:57 +01:00
return Path.Combine(globalSettings.LocalTempPath, "umbraco.config");
2018-06-29 19:52:40 +02:00
}
}
}