genericpath
index
/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/genericpath.py
Module Docs

Path operations common to more than one OS
Do not use directly.  The OS specific modules import the appropriate
functions from this module themselves.

 
Modules
       
os
stat

 
Functions
       
commonprefix(m)
Given a list of pathnames, returns the longest common leading component
exists(path)
Test whether a path exists.  Returns False for broken symbolic links
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

 
Data
        __all__ = ['commonprefix', 'exists', 'getatime', 'getctime', 'getmtime', 'getsize', 'isdir', 'isfile']