How can I make the program verify if it’s already on the targeted locations, and if not, move itself to another location?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
os.path.abspath(__file__)is the absolute path to the current module’s (or main script’s) present location, and os.rename is a way to move a file (not to a location where another file of the same name is already present, though; you’d have toos.unlinkthe latter first).