C# Class KFS.FileSystems.NTFS.FileNTFS

A file node in the NTFS filesystem.
Inheritance: File, IDescribable
Mostrar archivo Open project: Alex-Jaeger/BitcoinFindAndRecover Class Usage Examples

Public Methods

Method Description
Close ( ) : void
FileNTFS ( MFTRecord record, MFTAttribute attr, string path ) : KFS.DataStream

The constructor for a file contained as a hidden data stream.

FileNTFS ( MFTRecord record, string path ) : KFS.DataStream
GetBytes ( ulong offset, ulong length ) : byte[]
GetRuns ( ) : IEnumerable

Gets a list of the on-disk runs of this NTFSFile. Returns null if resident.

Open ( ) : void

Method Details

Close() public method

public Close ( ) : void
return void

FileNTFS() public method

The constructor for a file contained as a hidden data stream.
public FileNTFS ( MFTRecord record, MFTAttribute attr, string path ) : KFS.DataStream
record MFTRecord
attr MFTAttribute
path string
return KFS.DataStream

FileNTFS() public method

public FileNTFS ( MFTRecord record, string path ) : KFS.DataStream
record MFTRecord
path string
return KFS.DataStream

GetBytes() public method

public GetBytes ( ulong offset, ulong length ) : byte[]
offset ulong
length ulong
return byte[]

GetRuns() public method

Gets a list of the on-disk runs of this NTFSFile. Returns null if resident.
public GetRuns ( ) : IEnumerable
return IEnumerable

Open() public method

public Open ( ) : void
return void