Add custom context menu setting for findfile plugin and improve the search speed.

This commit is contained in:
qianlifeng
2014-11-03 17:30:48 +08:00
parent 3045611452
commit 9481d04a19
10 changed files with 182 additions and 26 deletions

View File

@@ -39,7 +39,7 @@ namespace Wox.Plugin.FindFile.MFTSearch
{
if (string.IsNullOrEmpty(item)) return new List<MFTSearchRecord>();
List<USNRecord> found = cache.FindByName(item);
List<USNRecord> found = cache.FindByName(item,100);
found.ForEach(x => FillPath(x.VolumeName, x, cache));
return found.ConvertAll(o => new MFTSearchRecord(o));
}