Steve Dower <steve.do...@python.org> added the comment:
> A crude workaround is to script PowerShell or CMD in a child process. I mean, that's not a *terrible* workaround: >>> import os >>> p1 = os.path.expandvars("%APPDATA%\\test.txt") >>> p1 'C:\\Users\\steve\\AppData\\Roaming\\test.txt' >>> open(p1, "w").close() >>> os.system(f'copy "{os.path.realpath(p1)}" "{p1}"') 1 file(s) copied. 0 >>> But yeah, definitely crude :) ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue41196> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com