Module Fat

type stat = {
filename : string;(*

Filename within the enclosing directory

*)
read_only : bool;(*

True means the contents are read-only

*)
directory : bool;(*

True means the entity is a directory; false means a file

*)
size : int64;(*

Size of the entity in bytes

*)
}

The type for Per-file/directory statistics.

module Make (B : Mirage_block.S) : sig ... end
module KV_RO (B : Mirage_block.S) : sig ... end

KV_RO is a read-only key=value store backed by a simple FAT filesystem on a block device.