include module type of Core_kernel.Filename
type t = Base.String.tinclude Bin_prot.Binable.S with type t := t
include Bin_prot.Binable.S_only_functions with type t := t
val bin_size_t : t Bin_prot.Size.sizerval bin_write_t : t Bin_prot.Write.writerval bin_read_t : t Bin_prot.Read.readerval __bin_read_t__ : (int -> t) Bin_prot.Read.readerThis function only needs implementation if t exposed to be a polymorphic variant. Despite what the type reads, this does *not* produce a function after reading; instead it takes the constructor tag (int) before reading and reads the rest of the variant t afterwards.
val bin_shape_t : Bin_prot.Shape.tval bin_writer_t : t Bin_prot.Type_class.writerval bin_reader_t : t Bin_prot.Type_class.readerval bin_t : t Bin_prot.Type_class.tval compare : t -> t -> Base.Int.tval hash_fold_t : Base.Hash.state -> t -> Base.Hash.stateval hash : t -> Base.Hash.hash_valueinclude Ppx_sexp_conv_lib.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> tval sexp_of_t : t -> Sexplib0.Sexp.tinclude Core_kernel.Comparable.S with type t := t with type comparator_witness = Core_kernel.String.comparator_witness
include Base.Comparable.S with type t := t with type comparator_witness = Core_kernel.String.comparator_witness
compare t1 t2 returns 0 if t1 is equal to t2, a negative integer if t1 is less than t2, and a positive integer if t1 is greater than t2.
ascending is identical to compare. descending x y = ascending y x. These are intended to be mnemonic when used like List.sort ~compare:ascending and List.sort
~cmp:descending, since they cause the list to be sorted in ascending or descending order, respectively.
clamp_exn t ~min ~max returns t', the closest value to t such that between t' ~low:min ~high:max is true.
Raises if not (min <= max).
val clamp : t -> min:t -> max:t -> t Base.Or_error.tinclude Base.Comparator.S with type t := t with type comparator_witness = Core_kernel.String.comparator_witness
type comparator_witness = Core_kernel.String.comparator_witnessval comparator : (t, comparator_witness) Base.Comparator.comparatorval validate_lbound : min:t Base.Maybe_bound.t -> t Base.Validate.checkval validate_ubound : max:t Base.Maybe_bound.t -> t Base.Validate.checkval validate_bound : min:t Base.Maybe_bound.t -> max:t Base.Maybe_bound.t -> t Base.Validate.checkmodule Replace_polymorphic_compare : sig ... endmodule Map : Core_kernel.Map.S with type Key.t = t with type Key.comparator_witness = comparator_witnessmodule Set : Core_kernel.Set.S with type Elt.t = t with type Elt.comparator_witness = comparator_witnessinclude Core_kernel.Hashable.S with type t := t
include Core_kernel.Hashable.Common with type t := t
val compare : t -> t -> Base.Int.tval hash_fold_t : Base.Hash.state -> t -> Base.Hash.stateval hash : t -> Base.Hash.hash_valueval hashable : t Core_kernel.Hashtbl.Hashable.tmodule Table : Core_kernel.Hashtbl.S with type key = tmodule Hash_set : Core_kernel.Hash_set.S with type elt = tmodule Hash_queue : Core_kernel.Hash_queue.S with type key = tval root : Base.String.tThe path of the root.
Pathname resolution
val is_posix_pathname_component : Base.String.t -> Base.Bool.tis_posix_pathname_component f
- returns
true if
fis a valid path component on a POSIX compliant OSNote that this checks a path component, and not a full path.
http://www.opengroup.org/onlinepubs/000095399/basedefs/xbd_chap03.html#tag_03_169
val temp_dir_name : Base.String.tThe name of the temporary directory:
Under Unix, the value of the TMPDIR environment variable, or "/tmp" if the variable is not set.
Under Windows, the value of the TEMP environment variable, or "." if the variable is not set.
val current_dir_name : Base.String.tThe conventional name for the current directory (e.g. . in Unix).
val parent_dir_name : Base.String.tThe conventional name for the parent of the current directory (e.g. .. in Unix).
val dir_sep : Base.String.tThe directory separator (e.g. / in Unix).
val concat : Base.String.t -> Base.String.t -> Base.String.tconcat p1 p2 returns a path equivalent to p1 ^ "/" ^ p2. In the resulting path p1 (resp. p2) has all its trailing (resp. leading) "." and "/" removed. eg: concat "a/." ".//b" => "a/b" concat "." "b" => "./b" concat "a" "." => "a/." concat "a" "/b" => "a/b"
@throws Failure if p1 is empty.
val is_relative : Base.String.t -> Base.Bool.tReturn true if the file name is relative to the current directory, false if it is absolute (i.e. in Unix, starts with /).
val is_absolute : Base.String.t -> Base.Bool.tval is_implicit : Base.String.t -> Base.Bool.tReturn true if the file name is relative and does not start with an explicit reference to the current directory (./ or ../ in Unix), false if it starts with an explicit reference to the root directory or the current directory.
val check_suffix : Base.String.t -> Base.String.t -> Base.Bool.tcheck_suffix name suff returns true if the filename name ends with the suffix suff.
val chop_suffix : Base.String.t -> Base.String.t -> Base.String.tchop_suffix name suff removes the suffix suff from the filename name. The behavior is undefined if name does not end with the suffix suff.
val chop_extension : Base.String.t -> Base.String.tReturn the given file name without its extension. The extension is the shortest suffix starting with a period and not including a directory separator, .xyz for instance.
Raise Invalid_argument if the given name does not contain an extension.
val split_extension : Base.String.t -> Base.String.t * Base.String.t Base.Option.tsplit_extension fn return the portion of the filename before the extension and the (optional) extension. Example: split_extension "/foo/my_file" = ("/foo/my_file", None) split_extension "/foo/my_file.txt" = ("/foo/my_file", Some "txt") split_extension "/home/c.falls/my_file" = ("/home/c.falls/my_file", None)
val basename : Base.String.t -> Base.String.tRespects the posix semantic.
Split a file name into directory name / base file name. concat (dirname name) (basename name) returns a file name which is equivalent to name. Moreover, after setting the current directory to dirname name (with Sys.chdir), references to basename name (which is a relative file name) designate the same file as name before the call to Sys.chdir.
The result is not specified if the argument is not a valid file name (for example, under Unix if there is a NUL character in the string).
val dirname : Base.String.t -> Base.String.tSee Filename.basename.
val split : Base.String.t -> Base.String.t * Base.String.tsplit filename returns (dirname filename, basename filename)
val parts : Base.String.t -> Base.String.t Base.List.tparts filename returns a list of path components in order. For instance: /tmp/foo/bar/baz -> "/"; "tmp"; "foo"; "bar"; "baz". The first component is always either "." for relative paths or "/" for absolute ones.
val of_parts : Base.String.t Base.List.t -> Base.String.tof_parts parts joins a list of path components into a path. It does roughly the opposite of parts, but they fail to be precisely mutually inverse because of ambiguities like multiple consecutive slashes and . components.
Raises an error if given an empty list.
val quote : Base.String.t -> Base.String.tReturn a quoted version of a file name, suitable for use as one argument in a command line, escaping all meta-characters. Warning: under Windows, the output is only suitable for use with programs that follow the standard Windows quoting conventions.
See Sys.quote for an alternative implementation that is more human readable but less portable.
module Stable : sig ... endrealpath path
- returns
the canonicalized absolute pathname of
path.
- raises Unix_error
on errors.
val open_temp_file : ?perm:int -> ?in_dir:string -> string -> string -> string * Stdio.Out_channel.tSame as Core_filename.temp_file, but returns both the name of a fresh temporary file, and an output channel opened (atomically) on this file. This function is more secure than temp_file: there is no risk that the temporary file will be modified (e.g. replaced by a symbolic link) before the program opens it.
val create_arg_type : ?key:'a Core_kernel.Univ_map.Multi.Key.t -> (string -> 'a) -> 'a Core_kernel.Command.Arg_type.tcreate_arg_type's resulting Arg_type.t does bash autocompletion, via compgen.
val arg_type : string Core_kernel.Command.Arg_type.targ_type is create_arg_type Fn.id