I did a little test in Python 2.X to try to copy a file from the folder that the script is to the Windows startup folder:
import shutil
import sys, os
startuplocation = get_special_folder_path("CSIDL_STARTUP")
shutil.copy('fototest.jpg', startuplocation)
however, I get the message:
File "copytest.py", line 5, in startuplocation = get_special_folder_path ("CSIDL_STARTUP") NameError: name 'get_special_folder_path' is not defined.
I started using Python very soon and I do not understand what's wrong.