module Fpath:sig..end
File system paths.
Note. Only use "/" as a directory separator, even on
Windows platforms.
typet =Topkg.fpath
The type for file system paths.
val append : t -> t -> tappend p q appends q to p as follows:
q is absolute then q is returnedq's segments to p using a "/" if needed.val (//) : t -> t -> tp // q is append p q.
val is_dir_path : t -> boolis_dir_path p is true iff p represents a directory. This means
that p is ., .. or ends with /, /.. or /..
val is_file_path : t -> boolis_file_path p is not (is_dir_path true).
val basename : t -> stringbasename p is p's basename, the last non empty segment of p.
val dirname : t -> stringdirname p is p's dirname, p without its last non empty segment.
val get_ext : t -> stringget_ext p is p's filename extension (including the '.') or
the empty string if there is no extension
val has_ext : string -> t -> boolhas_ext e p is true iff e is a suffix of p.
val rem_ext : t -> trem_ext p is p without its filename extension.