mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
76 lines
2.3 KiB
C#
76 lines
2.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using log4net.Repository.Hierarchy;
|
|
using Wox.Infrastructure.Storage.UserSettings;
|
|
using Log = Wox.Infrastructure.Logger.Log;
|
|
|
|
namespace Wox.Plugin.SystemPlugins.Program.ProgramSources
|
|
{
|
|
[Serializable]
|
|
public class FileSystemProgramSource : AbstractProgramSource
|
|
{
|
|
private string baseDirectory;
|
|
|
|
public FileSystemProgramSource(string baseDirectory)
|
|
{
|
|
this.baseDirectory = baseDirectory;
|
|
}
|
|
|
|
public FileSystemProgramSource(ProgramSource source):this(source.Location)
|
|
{
|
|
this.BonusPoints = source.BonusPoints;
|
|
}
|
|
|
|
public override List<Program> LoadPrograms()
|
|
{
|
|
List<Program> list = new List<Program>();
|
|
if (Directory.Exists(baseDirectory))
|
|
{
|
|
GetAppFromDirectory(baseDirectory, list);
|
|
FileChangeWatcher.AddWatch(baseDirectory);
|
|
}
|
|
return list;
|
|
}
|
|
|
|
private void GetAppFromDirectory(string path, List<Program> list)
|
|
{
|
|
try
|
|
{
|
|
foreach (string file in Directory.GetFiles(path))
|
|
{
|
|
if (UserSettingStorage.Instance.ProgramSuffixes.Split(';').Any(o => file.EndsWith("." + o)))
|
|
{
|
|
Program p = CreateEntry(file);
|
|
list.Add(p);
|
|
}
|
|
}
|
|
|
|
foreach (var subDirectory in Directory.GetDirectories(path))
|
|
{
|
|
GetAppFromDirectory(subDirectory, list);
|
|
}
|
|
}
|
|
catch (UnauthorizedAccessException e)
|
|
{
|
|
Log.Warn(string.Format("Can't access to directory {0}", path));
|
|
}
|
|
catch (DirectoryNotFoundException e)
|
|
{
|
|
Log.Warn(string.Format("Directory {0} doesn't exist", path));
|
|
}
|
|
catch (PathTooLongException e)
|
|
{
|
|
Log.Warn(string.Format("File path too long: {0}", e.Message));
|
|
}
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return typeof(FileSystemProgramSource).Name + ":" + this.baseDirectory;
|
|
}
|
|
}
|
|
}
|