Module Lwt_unix.LargeFile

module LargeFile: sig .. end

val lseek : Lwt_unix.file_descr -> int64 -> Lwt_unix.seek_command -> int64 Lwt.t
Wrapper for Unix.LargeFile.lseek
val truncate : string -> int64 -> unit Lwt.t
Wrapper for Unix.LargeFile.truncate
val ftruncate : Lwt_unix.file_descr -> int64 -> unit Lwt.t
Wrapper for Unix.LargeFile.ftruncate
type stats = Unix.LargeFile.stats = {
   st_dev : int;
   st_ino : int;
   st_kind : Lwt_unix.file_kind;
   st_perm : Lwt_unix.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;
}
val stat : string -> stats Lwt.t
Wrapper for Unix.LargeFile.stat
val lstat : string -> stats Lwt.t
Wrapper for Unix.LargeFile.lstat
val fstat : Lwt_unix.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.