in reply to Re^2: Can't Get Command Line Unzipper to Execute in CGI/Perl Script
in thread Can't Get Command Line Unzipper to Execute in CGI/Perl Script
system('no-frills.exe', $uploadedfile) or die("no-frills: $?/$!\n");
Using the multi-argument form of system will help handle non-trivial file names.
Make sure the current work directory is what you expect it to be.
|
|---|