|
|
|
isabs(s)
Test whether a path is absolute |
|
|
|
join(a,
*p)
Join two or more pathname components, inserting '/' as needed |
|
|
|
split(p)
Split a pathname. |
|
|
|
splitext(p)
Split the extension from a pathname. |
|
|
|
splitdrive(p)
Split a pathname into drive and path. |
|
|
|
basename(p)
Returns the final component of a pathname |
|
|
|
dirname(p)
Returns the directory component of a pathname |
|
|
|
commonprefix(m)
Given a list of pathnames, returns the longest common leading
component |
|
|
|
getsize(filename)
Return the size of a file, reported by os.stat(). |
|
|
|
getmtime(filename)
Return the last modification time of a file, reported by os.stat(). |
|
|
|
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(). |
|
|
|
islink(path)
Test whether a path is a symbolic link |
|
|
|
exists(path)
Test whether a path exists. |
|
|
|
lexists(path)
Test whether a path exists. |
|
|
|
isdir(path)
Test whether a path is a directory |
|
|
|
isfile(path)
Test whether a path is a regular file |
|
|
|
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 |
|
|
|
ismount(path)
Test whether a path is a mount point |
|
|
|
walk(top,
func,
arg)
Directory tree walk with callback function. |
|
|
|
expanduser(path)
Expand ~ and ~user constructions. |
|
|
|
expandvars(path)
Expand shell variables of form $var and ${var}. |
|
|
|
normpath(path)
Normalize path, eliminating double slashes, etc. |
|
|
|
abspath(path)
Return an absolute path. |
|
|
|
realpath(filename)
Return the canonical path of the specified filename, eliminating any
symbolic links encountered in the path. |
|
|
|
|