package lwt

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

Install

Dune Dependency

Authors

Maintainers

Sources

5.5.0.tar.gz
md5=94272fac89c5bf21a89c102b8a8f35a5
sha512=8951b94555e930634375816d71815b9d85daad6ffb7dab24864661504d11be26575ab0b237196c54693efa372a9b69cdc1d5068a20a250dc0bbb4a3c03c5fda1

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

Module Lwt_unix.LargeFile

val lseek : file_descr -> int64 -> seek_command -> int64 Lwt.t

Wrapper for Unix.LargeFile.lseek

val truncate : string -> int64 -> unit Lwt.t

Wrapper for Unix.LargeFile.truncate

val ftruncate : file_descr -> int64 -> unit Lwt.t

Wrapper for Unix.LargeFile.ftruncate

type 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;
}
val stat : string -> stats Lwt.t

Wrapper for Unix.LargeFile.stat

val lstat : string -> stats Lwt.t

Wrapper for Unix.LargeFile.lstat

val fstat : file_descr -> stats Lwt.t

Wrapper for Unix.LargeFile.fstat

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