KV.IO
val rec_files : path -> string list Lwt.t
rec_files dir
is the list of files recursively present in dir
and all of its sub-directories. Return filenames prefixed by dir
.
val file_exists : path -> bool Lwt.t
file_exist f
is true if f
exists.
val read_file : path -> string option Lwt.t
Read the contents of a file using mmap.
val mkdir : path -> unit Lwt.t
Create a directory.