I want to open up an exe I created, which is in the System32 folder of Windows. I do so through the command:
subprocess.call(["C:\\Windows\\System32\\ListTest.exe"])
But somehow Python does not find the System32 folder. I copied my exe over to the "System" directory in Windows, and if I want to open the exe there through Python, everything works fine. Why does Python not find the System32 directory?