package lwt

  1. Overview
  2. Docs
Promises and event-driven I/O

Install

dune-project
 Dependency

Authors

Maintainers

Sources

5.8.1.tar.gz
md5=d0f824f75ce5297975aec75366fed36c
sha512=c43fff2e9e808dc49ddf09caf7040e512ba36aebe2c600d524095ced11c196c3ac619953a11cb3e3a9f7c6c99e798d43bf179d5f790ab258fb9f746fae4c1125

doc/lwt.unix/Lwt_unix/LargeFile/index.html

Module Lwt_unix.LargeFileSource

Sourceval lseek : file_descr -> int64 -> seek_command -> int64 Lwt.t
Sourceval truncate : string -> int64 -> unit Lwt.t
Sourceval ftruncate : file_descr -> int64 -> unit Lwt.t
Sourcetype stats = Unix.LargeFile.stats = {
  1. st_dev : int;
  2. st_ino : int;
  3. st_kind : file_kind;
  4. st_perm : file_perm;
  5. st_uid : int;
  6. st_gid : int;
  7. st_rdev : int;
  8. st_size : int64;
  9. st_atime : float;
  10. st_mtime : float;
  11. st_ctime : float;
}
Sourceval stat : string -> stats Lwt.t
Sourceval lstat : string -> stats Lwt.t
Sourceval file_exists : string -> bool Lwt.t

file_exists name tests if a file named name exists.

Note that file_exists behaves similarly to Sys.file_exists:

  • “file” is interpreted as “directory entry” in this context
  • file_exists name will return false in circumstances that would make stat raise a Unix.Unix_error exception.
OCaml

Innovation. Community. Security.