package links

  1. Overview
  2. Docs
exception End_of_stream
exception AccessError of string
type dir_t
type file_t
type item =
  1. | Directory of dir_t
  2. | File of file_t
type inode = {
  1. no : int;
  2. data : item;
}
module Directory : sig ... end
module File : sig ... end
module Iterator : sig ... end