2016-04-27 09:15:53 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
|
|
|
|
|
namespace Wox.Infrastructure
|
|
|
|
|
{
|
|
|
|
|
public static class Wox
|
|
|
|
|
{
|
|
|
|
|
public const string Name = "Wox";
|
2016-05-04 09:26:19 +08:00
|
|
|
|
public const string Plugins = "Plugins";
|
2016-04-27 09:15:53 +08:00
|
|
|
|
public static readonly string ProgramPath = Directory.GetParent(Assembly.GetExecutingAssembly().Location).ToString();
|
|
|
|
|
public static readonly string DataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), Name);
|
2016-05-04 09:26:19 +08:00
|
|
|
|
public static readonly string UserDirectory = Path.Combine(DataPath, Plugins);
|
|
|
|
|
public static readonly string PreinstalledDirectory = Path.Combine(ProgramPath, Plugins);
|
2016-04-27 09:15:53 +08:00
|
|
|
|
}
|
|
|
|
|
}
|