Also catch SecurityException

This commit is contained in:
de4dot 2014-05-30 00:38:13 +02:00
parent 01179242a7
commit 890947af49

View File

@ -309,6 +309,9 @@ namespace de4dot.cui {
catch (IOException) {
return new List<string>();
}
catch (System.Security.SecurityException) {
return new List<string>();
}
return RecursiveAdd(searchDir, fsinfos);
}