in reply to Re: system() - output folder?
in thread system() - output folder?
The program 'file.exe' generates output files on its own, I just need to specify the folder so it outputs it there.my $executable = "C:/Desktop/file.exe"; my $output = "C:/Desktop/Folder"; system("$executable", "Argument") == 0 or die "system failed: $?";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: system() - output folder?
by linuxer (Curate) on Jul 18, 2008 at 16:47 UTC | |
by lil_v (Sexton) on Jul 18, 2008 at 20:00 UTC |