Implement reading of ISO9660 root directory.

This commit is contained in:
2019-07-19 14:26:02 +01:00
parent 1b5ef5a8cd
commit 67c23b2fab
7 changed files with 466 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
using System;
namespace DiscImageChef.Filesystems.ISO9660
{
public partial class ISO9660
{
DateTime DecodeIsoDateTime(byte[] date) => throw new NotImplementedException();
}
}