Is there a way to find the path of a user folder (desktop, downloads, etc...) if the folder was moved?
These don't lead to the correct path:
os.path.join(os.path.expanduser('~'), 'Desktop')
os.path.join(os.environ["HOMEPATH"], "Desktop")
Also, os.environ doesn't have any other key that will lead to the new path.