PowerToys/Wox.Plugin.System/DirectoryIndicator.cs
2014-02-28 23:21:01 +08:00

44 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Wox.Plugin.System
{
public class DirectoryIndicator : BaseSystemPlugin
{
protected override List<Result> QueryInternal(Query query)
{
List<Result> results = new List<Result>();
if (string.IsNullOrEmpty(query.RawQuery)) return results;
if (Directory.Exists(query.RawQuery))
{
Result result = new Result
{
Title = "Open this directory",
SubTitle = string.Format("path: {0}", query.RawQuery),
Score = 50,
IcoPath = "Images/folder.png",
Action = (c) =>
{
Process.Start(query.RawQuery);
return true;
}
};
results.Add(result);
}
return results;
}
protected override void InitInternal(PluginInitContext context)
{
}
}
}