I am trying to fetch the modified date and Author of the files in a folder.
import os PATH="my folder/books" my_list= os.listdir(PATH)
Let us suppose
customer details.xlsx
is one of the files in the books folder
How can i fetch the Author or Creator of the customer details.xlsx using os module of python?
Also i am able to fetch modified time by using os.path.getmtime(PATH/customer detalis.xlsx). But could not find the method for getting the Author.