package core_unix

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. name : string;
  2. inode : Core.Nativeint.t;
  3. kind : file_kind option;
    (*

    Some OS/filesystems provide the file type of the directory entry, some don't, some do based on mount options. Code should not require the file type to be present, merely use it as a way to increase speed or reduce race conditions.

    *)
}
val sexp_of_t : t -> Sexplib0.Sexp.t