18 lines
554 B
C#
18 lines
554 B
C#
using System.IO;
|
|
using Umbraco.Core.Composing;
|
|
using Umbraco.Core.Configuration;
|
|
|
|
namespace Umbraco.Core.IO
|
|
{
|
|
public class SystemFiles
|
|
{
|
|
public static string TinyMceConfig => Constants.SystemDirectories.Config + "/tinyMceConfig.config";
|
|
|
|
// TODO: Kill this off we don't have umbraco.config XML cache we now have NuCache
|
|
public static string GetContentCacheXml(IGlobalSettings globalSettings)
|
|
{
|
|
return Path.Combine(globalSettings.LocalTempPath(Current.IOHelper), "umbraco.config");
|
|
}
|
|
}
|
|
}
|