autozip.bat
Posted: 01 Nov 2011 08:10
Hi
I have som demo files from our counter-strike server i want to zip before uploading them to our webhotel so our members can download them
my code i use from other site just with my settings look like this.
After i rund the batch job i have one large file name if today 01-11-2011.zip
But i really want to have them zip separate instead ex. map1.zip map2.zip map3.zip etc. how do i do that ?
I use this bat to download our files every day viewtopic.php?f=3&t=2373 problem is it download all files not only the new as it should do.
Ps. I do not know anything about programming but I'm trying to learn hope someone can help
I have som demo files from our counter-strike server i want to zip before uploading them to our webhotel so our members can download them
my code i use from other site just with my settings look like this.
Code: Select all
@setlocal
@echo off
set path="D:\Programmer\WinRAR\";%path%
FOR %%A IN (%DATE:/=%) DO SET Today=%%A
winrar.exe a -afzip -m5 -ed -r E:\Dokumenter\Office\Server\autodemos\demos\gungameII\%TODAY%.zip E:\Dokumenter\Office\Server\autodemos\demos\gungameII\*.*
But i really want to have them zip separate instead ex. map1.zip map2.zip map3.zip etc. how do i do that ?
I use this bat to download our files every day viewtopic.php?f=3&t=2373 problem is it download all files not only the new as it should do.
Ps. I do not know anything about programming but I'm trying to learn hope someone can help
