package ftp

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val ls : string -> (string * stats) list
type file_descr
type open_flag =
  1. | O_RDONLY
  2. | O_WRONLY
  3. | O_RDWR
val openfile : string -> open_flag list -> file_perm -> file_descr
val close : file_descr -> unit
val read : file_descr -> string -> int -> int -> int
type seek_command =
  1. | SEEK_SET
  2. | SEEK_CUR
  3. | SEEK_END
val lseek : file_descr -> int -> seek_command -> int