mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix #181 that directory could be removed by user when wox running.
This commit is contained in:
parent
afdee44dd1
commit
4db7577448
1 changed files with 5 additions and 1 deletions
|
|
@ -52,7 +52,11 @@ namespace Wox.Plugin.SystemPlugins.Program.ProgramSources
|
|||
}
|
||||
catch (UnauthorizedAccessException e)
|
||||
{
|
||||
Debug.WriteLine(string.Format("Can't access to directory {0}",path),"WoxDebug");
|
||||
Debug.WriteLine(string.Format("Can't access to directory {0}", path), "WoxDebug");
|
||||
}
|
||||
catch (DirectoryNotFoundException e)
|
||||
{
|
||||
//no-operation
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue