realpath path
path
.
is_posix_pathname_component f
f
is a valid filename in a POSIX compliant OS (a path
component and not a full path).temp_file ?perm ?in_dir_name prefix suffix
Returns the name of a fresh temporary file in the temporary directory. The base name of the temporary file is formed by concatenating prefix, then a 6-digit hex number, then suffix. The temporary file is created empty. The file is guaranteed to be fresh, i.e. not already existing in the directory.
temp_dir_name
0o600
(readable and writable only by the file owner)temp_dir
is the same as temp_file
but creates a temporary directory.
The 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.
Same as Core.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.
The conventional name for the parent of the current directory
(e.g. ..
in Unix).
concat 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"
p1
is empty.]
Return true
if the file name is relative to the current
directory, false
if it is absolute (i.e. in Unix, starts
with /
).
Return 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.
check_suffix name suff
returns true
if the filename name
ends with the suffix suff
.
chop_suffix name suff
removes the suffix suff
from
the filename name
. The behavior is undefined if name
does not
end with the suffix suff
.
Return 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.
split_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)
Respects 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).
parts 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.
normalize path
Removes as much "." and ".." from the path as possible. If the path
is absolute they will all be removed.
parent path
The parent of the root directory is the root directory
path
.
make_relative ~to_:src f
returns f
relative to src
.
is_relative f <> is_relative src
make_absolute src
Turn src
into an absolute path expanded from the current working
directory.
expand
Makes a path absolute and expands ~
~username
to home directories. In
case of error (e.g.: path home of a none existing user) raises Failure
with a
(hopefully) helpful message.
Filename.compare is a comparison that normalizes filenames ("./a" = "a"), uses a more
human ready algorithm based on String.collate
("rfc02.txt > rfc1.txt") and
extenstions ("a.c" > "a.h").
It is a total comparison on normalized filenames.
with_open_temp_file ~write ~f prefix suffix
create a temporary file; runs write
on
its out_channel
and then f
on the resulting file. The file is removed once f
is
done running.
Runs f
with a temporary dir as option and removes the directory afterwards.
is_parent dir1 dir2
returns true
if dir1
is a parent of dir2
Note: This function is context independent, use expand
if you want to consider
relatives paths from a given point.
In particular:
"../../a"
is never the parent of "."
even if this could be true given
form the current working directory.