mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.IO;
|
|||
|
using System.Linq;
|
|||
|
using System.Reflection;
|
|||
|
using System.Text;
|
|||
|
using Newtonsoft.Json;
|
|||
|
using Wox.Infrastructure.Storage;
|
|||
|
|
|||
|
namespace Wox.Plugin.Program
|
|||
|
{
|
|||
|
public class ProgramStorage : JsonStrorage<ProgramStorage>
|
|||
|
{
|
|||
|
[JsonProperty]
|
|||
|
public List<ProgramSource> ProgramSources { get; set; }
|
|||
|
|
|||
|
[JsonProperty]
|
|||
|
public string ProgramSuffixes { get; set; }
|
|||
|
|
|||
|
protected override string ConfigFolder
|
|||
|
{
|
|||
|
get { return Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); }
|
|||
|
}
|
|||
|
|
|||
|
protected override ProgramStorage LoadDefault()
|
|||
|
{
|
|||
|
ProgramSources = new List<ProgramSource>();
|
|||
|
return this;
|
|||
|
}
|
|||
|
|
|||
|
protected override void OnAfterLoad(ProgramStorage storage)
|
|||
|
{
|
|||
|
if (string.IsNullOrEmpty(storage.ProgramSuffixes))
|
|||
|
{
|
|||
|
storage.ProgramSuffixes = "lnk;exe;appref-ms;bat";
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
protected override string ConfigName
|
|||
|
{
|
|||
|
get { return "setting"; }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|