I want to zip a directory using bat file command.
For example if i want to unzip a file means i can use jar xf file.zip bat file command.
jar xf file.zip
Like t
You can use the following command:
zip -r nameoffile.zip directory
Hope this helps.