package posixat

  1. Overview
  2. Docs
Bindings to the posix *at functions

Install

dune-project
 Dependency

Authors

Maintainers

Sources

v0.17.0.tar.gz
sha256=6f45df31dccb16b014243b1c155d5dbc59de3184562f4869cd9f6e3d05be03cc

doc/src/posixat/posixat.ml.html

Source file posixat.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
include Types

external at_fdcwd : unit -> Fd.t = "shexp_at_fdcwd"

external fstatat
  :  dir:Fd.t
  -> path:string
  -> flags:At_flag.t list
  -> Stats.t
  = "shexp_fstatat"

external readlinkat : dir:Fd.t -> path:string -> string = "shexp_readlinkat"

include Posixat_generated

external fdopendir : Fd.t -> Unix.dir_handle = "shexp_fdopendir"