mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Add OpenDir method to IReadOnlyFilesystem.
This commit is contained in:
@@ -987,13 +987,20 @@ public sealed partial class FAT
|
||||
|
||||
sealed class FatFileNode : IFileNode
|
||||
{
|
||||
internal uint[] _clusters;
|
||||
/// <inheritdoc />
|
||||
public string Path { get; init; }
|
||||
/// <inheritdoc />
|
||||
public long Length { get; init; }
|
||||
/// <inheritdoc />
|
||||
public long Offset { get; set; }
|
||||
}
|
||||
|
||||
internal uint[] _clusters;
|
||||
sealed class FatDirNode : IDirNode
|
||||
{
|
||||
internal CompleteDirectoryEntry[] _entries;
|
||||
internal int _position;
|
||||
/// <inheritdoc />
|
||||
public string Path { get; init; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user