mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 19:57:07 +02:00
Move MFTSearch to find file plugin.
This commit is contained in:
27
Plugins/Wox.Plugin.FindFile/MFTSearch/MFTSearchRecord.cs
Normal file
27
Plugins/Wox.Plugin.FindFile/MFTSearch/MFTSearchRecord.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user