I want to extract the owner of a file within a python3 script on a Windows system.
When I run: os.path.expanduser(fp)
or
os.stat(fp).st_uid
I receive a 0
for all my discussed files.
Does anybody know how to extract the id or name of an owner of a file using python on windows.
Thanks -d-