I am trying to write a script that I can give to user to have it automatically zip certain files and then load them onto an ftp site. Anyone know where I could find information on writing a batch file for auto-zipping files using only what is available to a user running Windows?
Share
A better alternative to batch file would be to use a JAR and use Java’s java.util.zip package to zip the files. Or how about distributing the bat file with a JAR. People could execute the BAT file and it in turn could run the JAR.