Add MFT Searcher

This commit is contained in:
qianlifeng
2014-10-22 18:36:49 +08:00
parent acba67f67d
commit 581423a87c
9 changed files with 846 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Wox.Infrastructure.MFTSearch
{
public class MFTSearchRecord
{
private USNRecord usn;
public MFTSearchRecord(USNRecord usn)
{
this.usn = usn;
}
public string FullPath
{
get { return usn.FullPath; }
}
public bool IsFolder
{
get { return usn.IsFolder; }
}
}
}