Title explains the problem, there are doc and docs files that which I want to retrieive their author information so that I can restructure my files.
os.stat
returns only size and datetime, real-file related information.
open(filename, 'rb').read(200)
returns many characters that I could not parse.
There is a module called xlrd
for reading xlsx
files. Yet, this still doesn't let me read doc
or docx
files. I am aware of new office files are not easily read on non-msoffice
programs, so if that's impossible, gathering info from old office files would suffice.
COM object
out also. – Dialogize