Add OpenDir method to IReadOnlyFilesystem.

This commit is contained in:
2022-12-21 19:10:51 +00:00
parent 63c961c269
commit c75a32a5c8
19 changed files with 939 additions and 4 deletions

View File

@@ -114,4 +114,12 @@ public sealed partial class ISO9660
/// <inheritdoc />
public long Offset { get; set; }
}
sealed class Iso9660DirNode : IDirNode
{
internal DecodedDirectoryEntry[] _entries;
internal int _position;
/// <inheritdoc />
public string Path { get; init; }
}
}