package conex

  1. Overview
  2. Docs
Establishing trust in community repositories

Install

Dune Dependency

Authors

Maintainers

Sources

conex-v0.11.0.tbz
sha256=9b64ab189a68ebb37daed618ce0c201f082469f4b4efa8cc9099442a169d924b
sha512=30caad9a0a8d45d24933652733349e251c0e8decb6ac4c7de18fc4ae8a621865f8af5b2d02a5c9fcca0cc122e6a443ba91f2f7a350f729633923f9c1b5cf913d

doc/conex.unix/Conex_unix_persistency/index.html

Module Conex_unix_persistencySource

File system operations using Unix

Sourceval exists : string -> bool

exists is Sys.exists.

Sourceval mkdir : ?mode:int -> string -> (unit, string) result

mkdir ~mode name creates a directory name, or errors.

Sourceval remove : string -> (unit, string) result

remove is Sys.remove or error.

Sourceval rename : string -> string -> (unit, string) result

rename is Sys.rename or error.

Sourceval file_type : string -> (Conex_utils.file_type, string) result

file_type path is the file type of path or error.

Sourceval read_file : string -> (string, string) result

read_file path is the contents of path or error.

Sourceval write_file : ?mode:int -> string -> string -> (unit, string) result

write_file ~mode path data writes data under path or error.

Sourceval write_replace : ?mode:int -> string -> string -> (unit, string) result

write_replace ~mode path data writes data under path.tmp and renames path.tmp to path or error.

Sourceval collect_dir : string -> (string list, string) result

collect_dir path are the inhabitants of path or error.

OCaml

Innovation. Community. Security.