diff options
Diffstat (limited to 'Lib/posixpath.py')
-rw-r--r-- | Lib/posixpath.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/posixpath.py b/Lib/posixpath.py index 4a92f18cb91..8da9fdaa8c2 100644 --- a/Lib/posixpath.py +++ b/Lib/posixpath.py @@ -15,7 +15,7 @@ import stat __all__ = ["normcase","isabs","join","splitdrive","split","splitext", "basename","dirname","commonprefix","getsize","getmtime", - "getatime","islink","exists","isdir","isfile","ismount", + "getatime","getctime","islink","exists","isdir","isfile","ismount", "walk","expanduser","expandvars","normpath","abspath", "samefile","sameopenfile","samestat","supports_unicode_filenames"] @@ -137,6 +137,9 @@ def getatime(filename): """Return the last access time of a file, reported by os.stat().""" return os.stat(filename).st_atime +def getctime(filename): + """Return the creation time of a file, reported by os.stat().""" + return os.stat(filename).st_ctime # Is a path a symbolic link? # This will always return false on systems where os.lstat doesn't exist. |