This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eryksun
Recipients eryksun, john_miller, paul.moore, steve.dower, tim.golden, zach.ware
Date 2020-10-15.18:27:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1602786479.98.0.648700073636.issue42046@roundup.psfhosted.org>
In-reply-to
Content
> Desktop rwx, 
> Username-directory rwx, 

POSIX permissions are not meaningful in Windows. Please run the following two commands in a Python script in order to show the current user and the access-control list on the directory:

    import subprocess
    subprocess.call('whoami.exe')
    subprocess.call(r'icacls.exe "C:\Users\Username\Desktop"')
History
Date User Action Args
2020-10-15 18:28:00eryksunsetrecipients: + eryksun, paul.moore, tim.golden, zach.ware, steve.dower, john_miller
2020-10-15 18:27:59eryksunsetmessageid: <1602786479.98.0.648700073636.issue42046@roundup.psfhosted.org>
2020-10-15 18:27:59eryksunlinkissue42046 messages
2020-10-15 18:27:59eryksuncreate