Is it a good idea to use:
import os.path
os.path.exists (file_path)
to "protect" a program against copies?
For example, in our main application we use
import os.path
os.path.exists ("c:\windows\mifile.dll")
where "mifile.dll" is anything, of course with another name like windriv.dll and just a simple text saved with Notepad.
If the file exists the program works, if not then it displays a warning message that it's a illegal copy or something.
and when installing the program I do the normal installation of the package or the portable folder and manually copy the file "mifile.dll" in c:\windows
???
What do you think?