Hi everybody,
I completed my scripts and I managed to compile them with py2exe.
This script will edit some images and will save the output in a specific subfolder of the program (if the user will install it in the default location it will be something like
c:\program files\MyProgram\output
The problem is that, for instance, guest users will not have writing access to the output folder since it is in the program files folder.
Is there a way to give to all the users of a computer the right to read and write my program folder (and its subfolder and files)?
I cannot ask them to install it in a folder where they have full access, so I have to find a way to give them the necessary rights.
I saw that SetACL does something like this probably, but I don't know how to list all the users of a computer with Python, for instance.