package fat-filesystem

  1. Overview
  2. Docs
type stat = {
  1. filename : string;
    (*

    Filename within the enclosing directory

    *)
  2. read_only : bool;
    (*

    True means the contents are read-only

    *)
  3. directory : bool;
    (*

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

    *)
  4. 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.