python shutil.move not working when moving from C to C but D to C
I am working on a simple installer for a app but I am getting errors. Code looks like: import shutil import os name = os.getlogin() source_path = os.path.abspath(‘foo.bar’) destination_path = os.path.join(‘C:’, ‘Users’, name, ‘AppData’, ‘Roaming’, ‘Microsoft’, ‘Windows’, ‘Start Menu’, ‘Programs’, ‘Startup’) shutil.move(source_path, destination_path) it works perfect for moving foo.bar from my d drive to c… Read More python shutil.move not working when moving from C to C but D to C