1998-08-10 16:42:37 -03:00
|
|
|
\section{\module{posixpath} ---
|
|
|
|
Common \POSIX{} pathname manipulations.}
|
1998-07-23 14:59:49 -03:00
|
|
|
\declaremodule{standard}{posixpath}
|
|
|
|
|
|
|
|
\modulesynopsis{Common \POSIX{} pathname manipulations.}
|
1995-03-17 12:07:09 -04:00
|
|
|
|
1998-02-09 16:27:12 -04:00
|
|
|
This module implements some useful functions on \POSIX{} pathnames.
|
1994-01-01 21:22:07 -04:00
|
|
|
|
1995-03-17 12:07:09 -04:00
|
|
|
\strong{Do not import this module directly.} Instead, import the
|
1998-05-14 12:16:12 -03:00
|
|
|
module \module{os}\refstmodindex{os} and use \code{os.path}.
|
1995-03-17 12:07:09 -04:00
|
|
|
|
1998-05-14 12:16:12 -03:00
|
|
|
\index{path!operations}
|
1995-03-17 12:07:09 -04:00
|
|
|
|
1994-01-01 21:22:07 -04:00
|
|
|
\begin{funcdesc}{basename}{p}
|
|
|
|
Return the base name of pathname
|
|
|
|
\var{p}.
|
|
|
|
This is the second half of the pair returned by
|
|
|
|
\code{posixpath.split(\var{p})}.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{commonprefix}{list}
|
|
|
|
Return the longest string that is a prefix of all strings in
|
|
|
|
\var{list}.
|
|
|
|
If
|
|
|
|
\var{list}
|
|
|
|
is empty, return the empty string (\code{''}).
|
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{exists}{p}
|
|
|
|
Return true if
|
|
|
|
\var{p}
|
|
|
|
refers to an existing path.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{expanduser}{p}
|
|
|
|
Return the argument with an initial component of \samp{\~} or
|
|
|
|
\samp{\~\var{user}} replaced by that \var{user}'s home directory. An
|
1998-05-14 12:16:12 -03:00
|
|
|
initial \samp{\~{}} is replaced by the environment variable
|
1998-08-06 12:33:55 -03:00
|
|
|
\envvar{HOME}; an initial \samp{\~\var{user}} is looked up in the
|
|
|
|
password directory through the built-in module
|
|
|
|
\module{pwd}\refbimodindex{pwd}. If the expansion fails, or if the
|
|
|
|
path does not begin with a tilde, the path is returned unchanged.
|
1994-01-01 21:22:07 -04:00
|
|
|
\end{funcdesc}
|
|
|
|
|
1994-04-21 07:32:28 -03:00
|
|
|
\begin{funcdesc}{expandvars}{p}
|
|
|
|
Return the argument with environment variables expanded. Substrings
|
|
|
|
of the form \samp{\$\var{name}} or \samp{\$\{\var{name}\}} are
|
|
|
|
replaced by the value of environment variable \var{name}. Malformed
|
|
|
|
variable names and references to non-existing variables are left
|
|
|
|
unchanged.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1998-07-24 17:49:39 -03:00
|
|
|
\begin{funcdesc}{getsize}{filename}
|
1998-07-27 18:11:42 -03:00
|
|
|
\versionadded{1.5.2}
|
1998-07-24 17:49:39 -03:00
|
|
|
Return the size, in bytes, of \var{filename}. Raise
|
|
|
|
\exception{os.error} if the file does not exist or is inaccessible.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{getmtime}{filename}
|
1998-07-27 18:11:42 -03:00
|
|
|
\versionadded{1.5.2}
|
1998-07-24 17:49:39 -03:00
|
|
|
Return the time of last modification of \var{filename}. The return
|
|
|
|
value is integer giving the number of seconds since the epoch (see the
|
|
|
|
\module{time} module. Raise \exception{os.error} if the file does not
|
|
|
|
exist or is inaccessible.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{getatime}{filename}
|
1998-07-27 18:11:42 -03:00
|
|
|
\versionadded{1.5.2}
|
1998-07-24 17:49:39 -03:00
|
|
|
Return the time of last access of \var{filename}. The return
|
|
|
|
value is integer giving the number of seconds since the epoch (see the
|
|
|
|
\module{time} module. Raise \exception{os.error} if the file does not
|
|
|
|
exist or is inaccessible.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1994-01-01 21:22:07 -04:00
|
|
|
\begin{funcdesc}{isabs}{p}
|
|
|
|
Return true if \var{p} is an absolute pathname (begins with a slash).
|
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{isfile}{p}
|
|
|
|
Return true if \var{p} is an existing regular file. This follows
|
1998-03-11 01:50:42 -04:00
|
|
|
symbolic links, so both \function{islink()} and \function{isfile()}
|
|
|
|
can be true for the same path.
|
1994-01-01 21:22:07 -04:00
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{isdir}{p}
|
|
|
|
Return true if \var{p} is an existing directory. This follows
|
1998-03-11 01:50:42 -04:00
|
|
|
symbolic links, so both \function{islink()} and \function{isdir()} can
|
|
|
|
be true for the same path.
|
1994-01-01 21:22:07 -04:00
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{islink}{p}
|
|
|
|
Return true if
|
|
|
|
\var{p}
|
|
|
|
refers to a directory entry that is a symbolic link.
|
|
|
|
Always false if symbolic links are not supported.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{ismount}{p}
|
1995-03-17 12:07:09 -04:00
|
|
|
Return true if pathname \var{p} is a \dfn{mount point}: a point in a
|
|
|
|
file system where a different file system has been mounted. The
|
|
|
|
function checks whether \var{p}'s parent, \file{\var{p}/..}, is on a
|
|
|
|
different device than \var{p}, or whether \file{\var{p}/..} and
|
|
|
|
\var{p} point to the same i-node on the same device --- this should
|
1998-02-09 16:27:12 -04:00
|
|
|
detect mount points for all \UNIX{} and \POSIX{} variants.
|
1994-01-01 21:22:07 -04:00
|
|
|
\end{funcdesc}
|
|
|
|
|
1998-03-17 02:33:25 -04:00
|
|
|
\begin{funcdesc}{join}{p\optional{, q\optional{, ...}}}
|
1997-02-18 17:53:53 -04:00
|
|
|
Joins one or more path components intelligently. If any component is
|
|
|
|
an absolute path, all previous components are thrown away, and joining
|
|
|
|
continues. The return value is the concatenation of \var{p}, and
|
|
|
|
optionally \var{q}, etc., with exactly one slash (\code{'/'}) inserted
|
|
|
|
between components, unless \var{p} is empty.
|
1994-01-01 21:22:07 -04:00
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{normcase}{p}
|
1998-02-18 10:00:05 -04:00
|
|
|
Normalize the case of a pathname. On \UNIX{}, this returns the path
|
|
|
|
unchanged; on case-insensitive filesystems, it converts the path to
|
|
|
|
lowercase. On Windows, it also converts forward slashes to backward
|
|
|
|
slashes.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{normpath}{p}
|
|
|
|
Normalize a pathname. This collapses redundant separators and
|
|
|
|
up-level references, e.g. \code{A//B}, \code{A/./B} and
|
|
|
|
\code{A/foo/../B} all become \code{A/B}. It does not normalize the
|
1998-03-11 01:50:42 -04:00
|
|
|
case (use \function{normcase()} for that). On Windows, it does
|
|
|
|
converts forward slashes to backward slashes.
|
1994-01-01 21:22:07 -04:00
|
|
|
\end{funcdesc}
|
|
|
|
|
1998-03-17 02:33:25 -04:00
|
|
|
\begin{funcdesc}{samefile}{p, q}
|
1998-03-11 01:50:42 -04:00
|
|
|
Return true if both pathname arguments refer to the same file or
|
|
|
|
directory (as indicated by device number and i-node number).
|
|
|
|
Raise an exception if a \function{os.stat()} call on either pathname
|
|
|
|
fails.
|
1994-01-01 21:22:07 -04:00
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{split}{p}
|
1996-06-26 16:23:26 -03:00
|
|
|
Split the pathname \var{p} in a pair \code{(\var{head}, \var{tail})},
|
|
|
|
where \var{tail} is the last pathname component and \var{head} is
|
|
|
|
everything leading up to that. The \var{tail} part will never contain
|
|
|
|
a slash; if \var{p} ends in a slash, \var{tail} will be empty. If
|
|
|
|
there is no slash in \var{p}, \var{head} will be empty. If \var{p} is
|
|
|
|
empty, both \var{head} and \var{tail} are empty. Trailing slashes are
|
|
|
|
stripped from \var{head} unless it is the root (one or more slashes
|
|
|
|
only). In nearly all cases, \code{join(\var{head}, \var{tail})}
|
|
|
|
equals \var{p} (the only exception being when there were multiple
|
|
|
|
slashes separating \var{head} from \var{tail}).
|
1994-01-01 21:22:07 -04:00
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{splitext}{p}
|
|
|
|
Split the pathname \var{p} in a pair \code{(\var{root}, \var{ext})}
|
|
|
|
such that \code{\var{root} + \var{ext} == \var{p}},
|
1996-08-19 20:00:50 -03:00
|
|
|
and \var{ext} is empty or begins with a period and contains
|
|
|
|
at most one period.
|
1994-01-01 21:22:07 -04:00
|
|
|
\end{funcdesc}
|
|
|
|
|
1998-03-17 02:33:25 -04:00
|
|
|
\begin{funcdesc}{walk}{p, visit, arg}
|
1994-01-01 21:22:07 -04:00
|
|
|
Calls the function \var{visit} with arguments
|
|
|
|
\code{(\var{arg}, \var{dirname}, \var{names})} for each directory in the
|
|
|
|
directory tree rooted at \var{p} (including \var{p} itself, if it is a
|
|
|
|
directory). The argument \var{dirname} specifies the visited directory,
|
|
|
|
the argument \var{names} lists the files in the directory (gotten from
|
1998-03-11 01:50:42 -04:00
|
|
|
\code{os.listdir(\var{dirname})}).
|
1997-03-25 11:25:54 -04:00
|
|
|
The \var{visit} function may modify \var{names} to
|
1995-03-17 12:07:09 -04:00
|
|
|
influence the set of directories visited below \var{dirname}, e.g., to
|
|
|
|
avoid visiting certain parts of the tree. (The object referred to by
|
1998-03-11 01:50:42 -04:00
|
|
|
\var{names} must be modified in place, using \keyword{del} or slice
|
1995-03-17 12:07:09 -04:00
|
|
|
assignment.)
|
1994-01-01 21:22:07 -04:00
|
|
|
\end{funcdesc}
|