mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
19 lines
609 B
C#
19 lines
609 B
C#
using System.IO;
|
|
|
|
namespace Wox.Infrastructure.Storage
|
|
{
|
|
public class PluginJsonStorage<T> :JsonStrorage<T> where T : new()
|
|
{
|
|
public PluginJsonStorage()
|
|
{
|
|
// C# releated, add python releated below
|
|
var dataType = typeof(T);
|
|
var assemblyName = typeof(T).Assembly.GetName().Name;
|
|
DirectoryPath = Path.Combine(Constant.DataDirectory, DirectoryName, Constant.Plugins, assemblyName);
|
|
Helper.ValidateDirectory(DirectoryPath);
|
|
|
|
FilePath = Path.Combine(DirectoryPath, $"{dataType.Name}{FileSuffix}");
|
|
}
|
|
}
|
|
}
|