summaryrefslogtreecommitdiffstats
path: root/Lib/ntpath.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2002-12-31 13:11:54 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2002-12-31 13:11:54 (GMT)
commit96a60e4af574d72f14ad70fc4db5986e1ad42aa5 (patch)
tree0e3b149954bb3f9df9257694f9a1e7d356e7ec7a /Lib/ntpath.py
parent24a880b499a53436de52ef9ef107db001e59e24b (diff)
downloadcpython-96a60e4af574d72f14ad70fc4db5986e1ad42aa5.zip
cpython-96a60e4af574d72f14ad70fc4db5986e1ad42aa5.tar.gz
cpython-96a60e4af574d72f14ad70fc4db5986e1ad42aa5.tar.bz2
Patch #658927: Add getctime to os.path.
Document that getatime and getmtime may return floats.
Diffstat (limited to 'Lib/ntpath.py')
-rw-r--r--Lib/ntpath.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py
index 4e7bb88..d6b6920 100644
--- a/Lib/ntpath.py
+++ b/Lib/ntpath.py
@@ -11,7 +11,7 @@ import sys
__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","splitunc",
"supports_unicode_filenames"]
@@ -220,6 +220,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 posix.lstat doesn't exist.