I wanted to run this zipTransfer.pl perl program from within a function in Java
private void runZipTransfer() throws IOException {
Runtime.getRuntime().exec(new String[] {"C:\\Perl64\\bin", "C:\\Lazy\\zipTransfer.pl"});
}
When running my Java program, however, nothing happens! Where's the issue here?