i'm trying to run an exe file (say foo.exe) using python script exported to exe (say boo.exe) using py2exe, it always give the below error as can't find the specified file, but i'm pretty sure the foo.exe is exist and on same directory with boo.exe, the code works fine before exporting the script into exe !
WindowsError: [Error 2] The system cannot find the file specified: 'C:\\Users\\test\\Desktop\\foo.exe'
the code is
os.startfile("foo.exe")
is it somekind of bug or limitation like this one