I'd like to collect some information about the properties for an excel file, such as:
The Author, Last saved and Last printed.
Here is the code I used to get access time, modified time, change time and size. print('Access time :', time.ctime(os.path.getatime(file)))
print('Modified time:', time.ctime(os.path.getmtime(__file__)))
print('Change time :', time.ctime(os.path.getctime(__file__)))
print('Size :', os.path.getsize(__file__))
information like: author, last saved, last printed
I was looking through these but nothing helpful: https://docs.python.org/2/library/os.path.html
I have the difference between the original date and time of creation/modification (originally) and the date/time of download.