mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
21 lines
635 B
C#
21 lines
635 B
C#
|
using System.IO;
|
|||
|
|
|||
|
namespace Wox.Infrastructure.Storage
|
|||
|
{
|
|||
|
public class PluginSettingsStorage<T> :JsonStrorage<T> where T : new()
|
|||
|
{
|
|||
|
public PluginSettingsStorage()
|
|||
|
{
|
|||
|
var pluginDirectoryName = "Plugins";
|
|||
|
|
|||
|
// C# releated, add python releated below
|
|||
|
var type = typeof (T);
|
|||
|
FileName = type.Name;
|
|||
|
var assemblyName = type.Assembly.GetName().Name;
|
|||
|
DirectoryPath = Path.Combine(WoxDirectroy.Executable, DirectoryName, pluginDirectoryName, assemblyName);
|
|||
|
|
|||
|
FilePath = Path.Combine(DirectoryPath, FileName + FileSuffix);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|