mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 12:09:18 +08:00
14 lines
440 B
C#
14 lines
440 B
C#
|
using System;
|
|||
|
using System.IO;
|
|||
|
using System.Reflection;
|
|||
|
|
|||
|
namespace Wox.Infrastructure
|
|||
|
{
|
|||
|
public static class Wox
|
|||
|
{
|
|||
|
public const string Name = "Wox";
|
|||
|
public static readonly string ProgramPath = Directory.GetParent(Assembly.GetExecutingAssembly().Location).ToString();
|
|||
|
public static readonly string DataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), Name);
|
|||
|
}
|
|||
|
}
|