in reply to Re: Returned Code
in thread Returned Code

"." is always in the front of the PATH in Windows (implicitly), so if system("a.exe"); fails, so would system(".\a.exe");. (system("./a.exe"); just plain won't work.)

But, that's a good thoery

>perl -e"print system 'nonexistant'" 'nonexistant' is not recognized as an internal or external command, operable program or batch file. 256