package plato

  1. Overview
  2. Docs
type t = {
  1. name : string;
  2. path : string;
  3. stat : stat_results;
}
val name : t -> string
val path : t -> string
val inode : t -> int
val is_dir : ?follow_symlinks:bool -> t -> bool
val is_file : ?follow_symlinks:bool -> t -> bool
val stat : ?follow_symlinks:bool -> t -> stat_results