SkillAgentSearch skills...

NTFSDirect

NTFS MFT (master file table) raw reader and parser

Install / Use

/learn @rasberry/NTFSDirect
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

NTFSDirect

NTFS MFT (master file table) raw reader and parser

##Usage

string vol = "c:";
var fileList = new NTFSDirect.Enumerator(vol);
foreach(string file in fileList) {
	FileInfo f = new FileInfo(file);
	if (!f.Exists) { continue; } //every file is enumerated even ones we don't have access to.
	//Do something with each path
}

Get only some extensions

string vol = "c:";
var fileList = new NTFSDirect.Enumerator(vol, new [] {".txt", ".md"});
foreach(string file in fileList) {
	FileInfo f = new FileInfo(file);
	if (!f.Exists) { continue; } //every file is enumerated even ones we don't have access to.
	//Do something with each path
}

This code is based on the work found here

View on GitHub
GitHub Stars27
CategoryDevelopment
Updated3mo ago
Forks2

Languages

C#

Security Score

77/100

Audited on Dec 3, 2025

No findings