| |
- abspath(path)
- Return an absolute path.
- basename(p)
- Returns the final component of a pathname
- commonprefix(m)
- Given a list of pathnames, returns the longest common leading component
- dirname(p)
- Returns the directory component of a pathname
- exists(path)
- Test whether a path exists. Returns False for broken symbolic links
- expanduser(path)
- Expand ~ and ~user constructions. If user or $HOME is unknown,
do nothing.
- expandvars(path)
- Expand shell variables of form $var and ${var}. Unknown variables
are left unchanged.
- getatime(filename)
- Return the last access time of a file, reported by os.stat().
- getctime(filename)
- Return the metadata change time of a file, reported by os.stat().
- getmtime(filename)
- Return the last modification time of a file, reported by os.stat().
- getsize(filename)
- Return the size of a file, reported by os.stat().
- isabs(s)
- Test whether a path is absolute
- isdir(s)
- Return true if the pathname refers to an existing directory.
- isfile(path)
- Test whether a path is a regular file
- islink(path)
- Test whether a path is a symbolic link
- ismount(path)
- Test whether a path is a mount point
- join(a, *p)
- Join two or more pathname components, inserting '/' as needed.
If any component is an absolute path, all previous path components
will be discarded.
- lexists(path)
- Test whether a path exists. Returns True for broken symbolic links
- normcase(s)
- Normalize case of pathname. Has no effect under Posix
- normpath(path)
- Normalize path, eliminating double slashes, etc.
- realpath(filename)
- Return the canonical path of the specified filename, eliminating any
symbolic links encountered in the path.
- relpath(path, start='.')
- Return a relative version of a path
- samefile(f1, f2)
- Test whether two pathnames reference the same actual file
- sameopenfile(fp1, fp2)
- Test whether two open file objects reference the same file
- samestat(s1, s2)
- Test whether two stat buffers reference the same file
- split(p)
- Split a pathname. Returns tuple "(head, tail)" where "tail" is
everything after the final slash. Either part may be empty.
- splitdrive(p)
- Split a pathname into drive and path. On Posix, drive is always
empty.
- splitext(p)
- Split the extension from a pathname.
Extension is everything from the last dot to the end, ignoring
leading dots. Returns "(root, ext)"; ext may be empty.
- walk(top, func, arg)
- Directory tree walk with callback function.
For each directory in the directory tree rooted at top (including top
itself, but excluding '.' and '..'), call func(arg, dirname, fnames).
dirname is the name of the directory, and fnames a list of the names of
the files and subdirectories in dirname (excluding '.' and '..'). func
may modify the fnames list in-place (e.g. via del or slice assignment),
and walk will only recurse into the subdirectories whose names remain in
fnames; this can be used to implement a filter, or to impose a specific
order of visiting. No semantics are defined for, or required of, arg,
beyond that arg is always passed to func. It can be used, e.g., to pass
a filename pattern, or a mutable object designed to accumulate
statistics. Passing None for arg is common.
|