batch file for compressing folder in same directory -


i want zip folder using batch file. here's code zip.bat:

cscript zip.vbs e:\app e:\app.zip 

zip.vbs has following code:

set objargs = wscript.arguments  inputfolder = objargs(0)  zipfile = objargs(1)  'create empty zip file.  createobject("scripting.filesystemobject").createtextfile(zipfile, true).write "pk" & chr(5) & chr(6) & string(18, vbnullchar)   set objshell = createobject("shell.application")  set source = objshell.namespace(inputfolder).items  objshell.namespace(zipfile).copyhere(source)  'required!  wscript.sleep 2000000 

this code ziiping folder dont want mention drive name. want in drive if keep bat file n app folder after running bat file should zip folder. there code this???

you'll need add filesystemobject , use getabsolutepathname function - shell.application namespaces not accept relative paths.

though using sleep bad idea - either make script slow or will interrupt zipping.the better idea count items in source , in destination zipping transactional , files count robust way ti check if operation done.

you can check zipjs.bat uses shell.application packed in hybrid jscript\.bat script (it no create temp files).it able process relative paths ,and comparatively robust (one of used scripts i've written - had feedback , needed fix numerous of bugs :-) )

more info here: how can compress (/ zip ) , uncompress (/ unzip ) files , folders batch file without using external tools?

set objargs = wscript.arguments set fso=createobject("scripting.filesystemobject"): inputfolder =  fso.getabsolutepathname(objargs(0)):    zipfile = objargs(1)  'create empty zip file.  createobject("scripting.filesystemobject").createtextfile(zipfile, true).write "pk" & chr(5) & chr(6) & string(18, vbnullchar)   set objshell = createobject("shell.application")  set source = objshell.namespace(inputfolder).items  objshell.namespace(zipfile).copyhere(source)  'required!  wscript.sleep 2000000 

Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -