![]() |
|
XP is just a number | |
PerlMonks |
Re: system calls problemby snadra (Scribe) |
on May 27, 2004 at 08:21 UTC ( #356831=note: print w/replies, xml ) | Need Help?? |
Try to execute the whole path. If that does not help, maybe the programm you try to call is causing the problem. system() is doing a fork, and the process is waitng for the child process to complete. If you don't need to fork (the return) try exec(), wich does not do a return: exec('C\pogramms\programm.exe', $file_to_open); snadra
In Section
Seekers of Perl Wisdom
|
|