mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix a programs bug if custom program folder is not exist.
This commit is contained in:
parent
7926dd9aeb
commit
4121bbc772
3 changed files with 18 additions and 5 deletions
|
|
@ -32,7 +32,7 @@ namespace Wox.Plugin.SystemPlugins.Program
|
|||
switch (Path.GetExtension(file).ToLower())
|
||||
{
|
||||
case ".exe":
|
||||
p.ExecuteName = global::System.IO.Path.GetFileName(file);
|
||||
p.ExecuteName = Path.GetFileName(file);
|
||||
try
|
||||
{
|
||||
FileVersionInfo versionInfo = FileVersionInfo.GetVersionInfo(file);
|
||||
|
|
|
|||
|
|
@ -30,8 +30,10 @@ namespace Wox.Plugin.SystemPlugins.Program.ProgramSources
|
|||
public override List<Program> LoadPrograms()
|
||||
{
|
||||
List<Program> list = new List<Program>();
|
||||
GetAppFromDirectory(BaseDirectory, list);
|
||||
|
||||
if (Directory.Exists(BaseDirectory))
|
||||
{
|
||||
GetAppFromDirectory(BaseDirectory, list);
|
||||
}
|
||||
return list;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -105,8 +105,19 @@ namespace Wox.Helper
|
|||
ThreadPool.QueueUserWorkItem(delegate
|
||||
{
|
||||
Exception exception = null;
|
||||
try { action(); }
|
||||
catch (Exception ex) { exception = ex; }
|
||||
try
|
||||
{
|
||||
action();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
exception = ex;
|
||||
#if (DEBUG)
|
||||
{
|
||||
throw;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
OnItemComplete(state, exception);
|
||||
});
|
||||
return this;
|
||||
|
|
|
|||
Loading…
Reference in a new issue