Home | Trees | Indices | Help |
|
---|
|
Common operations on Posix pathnames. Instead of importing this module directly, import os and refer to this module as os.path. The "os.path" name is an alias for this module on Posix systems; on other systems (e.g. Mac, Windows), os.path provides the same operations in a manner specific to that platform, and is an alias to another module (e.g. macpath, ntpath). Some of this can actually be useful on non-Posix systems too, e.g. for manipulation of the pathname component of URLs.
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|
|||
_varprog = False
|
|||
altsep = False
|
|||
curdir =
|
|||
defpath =
|
|||
devnull =
|
|||
extsep =
|
|||
pardir =
|
|||
pathsep =
|
|||
sep =
|
|||
supports_unicode_filenames = False
|
|
Internal helper function. Takes a path and follows symlinks until we either arrive at something that isn't a symlink, or encounter a path we've seen before (meaning that there's a loop). |
Test whether a path exists. Returns False for broken symbolic links |
Expand ~ and ~user constructions. If user or $HOME is unknown, do nothing. |
Expand shell variables of form $var and ${var}. Unknown variables are left unchanged. |
Test whether a path exists. Returns True for broken symbolic links |
Normalize case of pathname. Has no effect under Posix |
Split a pathname. Returns tuple "(head, tail)" where "tail" is everything after the final slash. Either part may be empty. |
Split a pathname into drive and path. On Posix, drive is always empty. |
Split the extension from a pathname. Extension is everything from the last dot to the end. Returns "(root, ext)", either part may be empty. |
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. |
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0beta1 on Mon Jun 14 22:07:43 2010 | http://epydoc.sourceforge.net |