lwt
Promises and event-driven I/O
1024" x-on:close-sidebar="sidebar=window.innerWidth > 1024 && true">
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
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 = {
st_dev : int; |
st_ino : int; |
st_kind : file_kind; |
st_perm : file_perm; |
st_nlink : int; |
st_uid : int; |
st_gid : int; |
st_rdev : int; |
st_size : int64; |
st_atime : float; |
st_mtime : float; |
st_ctime : float; |
}
Wrapper for Unix.LargeFile.stat
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 returnfalse
in circumstances that would makestat
raise aUnix.Unix_error
exception.