package core_unix

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Core_unix.Readdir_detailedSource

Sourcetype 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.

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