From 2bc1f8f07e7f58aa6db209260dd7a0a340fcfa12 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 24 Jul 1998 20:49:26 +0000 Subject: Added getsize(), getmtime(), getatime() --- Lib/macpath.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'Lib/macpath.py') diff --git a/Lib/macpath.py b/Lib/macpath.py index eeed54168a5..68dd6d48cc1 100644 --- a/Lib/macpath.py +++ b/Lib/macpath.py @@ -99,6 +99,24 @@ def isdir(s): return S_ISDIR(st[ST_MODE]) +# 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] + + # Return true if the pathname refers to a symbolic link. # (Always false on the Mac, until we understand Aliases.) -- cgit v1.2.3