PowerToys/Plugins/Wox.Plugin.Program/ProgramSources/AppPathsProgramSource.cs

72 lines
2.4 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using Wox.Infrastructure.Logger;
namespace Wox.Plugin.Program.ProgramSources
{
[Serializable]
[System.ComponentModel.Browsable(false)]
public class AppPathsProgramSource : AbstractProgramSource
{
public AppPathsProgramSource()
{
BonusPoints = -10;
}
public AppPathsProgramSource(ProgramSource source) : this()
{
BonusPoints = source.BonusPoints;
}
public override List<Program> LoadPrograms()
{
var list = new List<Program>();
ReadAppPaths(@"SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths", list);
ReadAppPaths(@"SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\App Paths", list); //TODO: need test more on 64-bit
return list;
}
private void ReadAppPaths(string rootpath, List<Program> list)
{
using (var root = Microsoft.Win32.Registry.LocalMachine.OpenSubKey(rootpath))
{
if (root == null) return;
foreach (var item in root.GetSubKeyNames())
{
try
{
using (var key = root.OpenSubKey(item))
2014-03-20 04:15:05 +08:00
{
string path = key.GetValue("") as string;
2015-11-08 19:31:44 +08:00
if (string.IsNullOrEmpty(path)) continue;
// fix path like this ""\"C:\\folder\\executable.exe\"""
const int begin = 0;
int end = path.Length - 1;
const char quotationMark = '"';
if (path[begin] == quotationMark && path[end] == quotationMark)
{
path = path.Substring(begin + 1, path.Length - 2);
}
if (!System.IO.File.Exists(path)) continue;
var entry = CreateEntry(path);
2014-03-20 04:15:05 +08:00
entry.ExecuteName = item;
list.Add(entry);
}
}
catch (Exception e)
{
Log.Error(e);
}
}
}
}
2014-03-19 20:16:20 +08:00
public override string ToString()
{
return typeof(AppPathsProgramSource).Name;
}
}
}