Implement mounting FAT.

This commit is contained in:
2019-04-26 00:54:51 +01:00
parent 1be5373796
commit 8bb291246b
5 changed files with 405 additions and 28 deletions

View File

@@ -54,6 +54,12 @@ namespace DiscImageChef.Filesystems.FAT
/// </summary>
/// <param name="path">Directory path.</param>
/// <param name="contents">Directory contents.</param>
public Errno ReadDir(string path, out List<string> contents) => throw new NotImplementedException();
public Errno ReadDir(string path, out List<string> contents)
{
contents = null;
if(!mounted) return Errno.AccessDenied;
throw new NotImplementedException();
}
}
}