Common pathname manipulations, WindowsNT/95 version.
Instead of importing this module directly, import os and refer to this
module as os.path.
|
abspath(path)
Return the absolute version of a path. |
source code
|
|
|
basename(p)
Returns the final component of a pathname |
source code
|
|
|
commonprefix(m)
Given a list of pathnames, returns the longest common leading
component |
source code
|
|
|
dirname(p)
Returns the directory component of a pathname |
source code
|
|
|
|
|
|
|
|
|
getatime(filename)
Return the last access time of a file, reported by os.stat() |
source code
|
|
|
getctime(filename)
Return the creation time of a file, reported by os.stat(). |
source code
|
|
|
getmtime(filename)
Return the last modification time of a file, reported by
os.stat() |
source code
|
|
|
getsize(filename)
Return the size of a file, reported by os.stat() |
source code
|
|
|
|
|
isdir(path)
Test whether a path is a directory |
source code
|
|
|
isfile(path)
Test whether a path is a regular file |
source code
|
|
|
|
|
ismount(path)
Test whether a path is a mount point (defined as root of
drive) |
source code
|
|
|
join(a,
*p)
Join two or more pathname components, inserting "\" as
needed |
source code
|
|
|
|
|
|
|
normpath(path)
Normalize path, eliminating double slashes, etc. |
source code
|
|
|
realpath(path)
Return the absolute version of a path. |
source code
|
|
|
|
|
|
|
|
|
|
|
walk(top,
func,
arg)
Directory tree walk with callback function. |
source code
|
|