I am new to python. So please pardon my mistakes/ignorance. I have an GUI app script that I use to copy some folders from another machine to my machine and also do some other processing with the files in the folders. Now, I would like to place this script on my machine and let other people(with no python installed on theirs machines) to execute this script. I want it to behave as if it was running on their machine. I mean, I don't want to see any errors while this script from my machine makes any changes to their files like access denied etc. It should tread D:\ drive as theirs not mine.
Is it possible somehow in python?
Thanks in advance.