View Single Post
  #10  
Old 26-11-2013, 14:06
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
Can you fix this code for me, i don't know what's wrong:
Quote:
ExtractTemporaryFile('7z.exe');
ExtractTemporaryFile('7z.dll');
if not ISExec ( 0, 0, 0, ExpandConstant('{tmp}\7z.exe'), '-o"' + ExpandConstant('{app}') + '" a -tzip -y -r data.zip"' + ExpandConstant('{app}\datafiles') + '" ', ExpandConstant('{tmp}'), 'please wait.',false) then break;
DeleteFile(ExpandConstant('{app}\datafiles'));
I want to pack mutiple files/folders inside a folder called datafiles into a single zip called data.zip.
Reply With Quote