I have a File that needs to be moved by my python script with shutil but I don't know where the origin location is, how do I find the origin location?
import shutil
import os
name = os.getlogin()
shutil.move(./file.foo, 'C:/Users/'+name+'/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup')
the "file.foo" is in the same directory as my python script
I have searched everywhere but I cant get a good result even with os.path
and others.