Lwt_unix.LargeFile
SourceWrapper for Unix.LargeFile.lseek
Wrapper for Unix.LargeFile.truncate
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
Wrapper for Unix.LargeFile.fstat
file_exists name
tests if a file named name
exists.
Note that file_exists
behaves similarly to Sys.file_exists
:
file_exists name
will return false
in circumstances that would make stat
raise a Unix.Unix_error
exception.