summaryrefslogtreecommitdiffstats
path: root/Lib/posixpath.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-07-24 20:49:26 (GMT)
committerGuido van Rossum <guido@python.org>1998-07-24 20:49:26 (GMT)
commit2bc1f8f07e7f58aa6db209260dd7a0a340fcfa12 (patch)
treef93a8ea6c67f5f010cd448c980d42c977225c636 /Lib/posixpath.py
parent89a79d19b7be960a9b6b00cfd034052ead9f4c6d (diff)
downloadcpython-2bc1f8f07e7f58aa6db209260dd7a0a340fcfa12.zip
cpython-2bc1f8f07e7f58aa6db209260dd7a0a340fcfa12.tar.gz
cpython-2bc1f8f07e7f58aa6db209260dd7a0a340fcfa12.tar.bz2
Added getsize(), getmtime(), getatime()
Diffstat (limited to 'Lib/posixpath.py')
-rw-r--r--Lib/posixpath.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/Lib/posixpath.py b/Lib/posixpath.py
index 1166881..a5c0de2 100644
--- a/Lib/posixpath.py
+++ b/Lib/posixpath.py
@@ -128,6 +128,24 @@ def commonprefix(m):
return prefix
+# Get size, mtime, atime of files.
+
+def getsize(filename):
+ """Return the size of a file, reported by os.stat()."""
+ st = os.stat(filename)
+ return st[stat.ST_SIZE]
+
+def getmtime(filename):
+ """Return the last modification time of a file, reported by os.stat()."""
+ st = os.stat(filename)
+ return st[stat.ST_MTIME]
+
+def getatime(filename):
+ """Return the last access time of a file, reported by os.stat()."""
+ st = os.stat(filename)
+ return st[stat.ST_MTIME]
+
+
# Is a path a symbolic link?
# This will always return false on systems where os.lstat doesn't exist.