|
|
|
|
|
basename(p)
Returns the final component of a pathname |
source code
|
|
|
commonprefix(m)
Given a list of pathnames, returns the longest common leading
component |
|
|
|
dirname(p)
Returns the directory component of a pathname |
source code
|
|
|
exists(path)
Test whether a path exists. |
|
|
|
|
|
|
|
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(). |
|
|
|
|
|
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 |
source code
|
|
|
ismount(path)
Test whether a path is a mount point |
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(filename)
Return the canonical path of the specified filename, eliminating any
symbolic links encountered in the path. |
source code
|
|
|
relpath(path,
start=' . ' )
Return a relative version of a path |
source code
|
|
|
samefile(f1,
f2)
Test whether two pathnames reference the same actual file |
source code
|
|
|
sameopenfile(fp1,
fp2)
Test whether two open file objects reference the same file |
source code
|
|
|
samestat(s1,
s2)
Test whether two stat buffers reference the same file |
source code
|
|
|
|
|
|
|
|
|
walk(top,
func,
arg)
Directory tree walk with callback function. |
source code
|
|