tenho esse codigo pra Descompactar com 7zip
tem como usar esse codigo pra zipar com ele
- Código:
Public Function desczip()
Dim SourceDir As String
Dim Desti As String
Dim unZip, str7z, strcmd As String
str7z = CurrentProject.Path & "\7z\7z.exe"
SourceDir = CurrentProject.Path & "\Retorno\AACAg5pjIA6t1dgSZZlo4g1ka"
Desti = CurrentProject.Path & "\Retorno\"
strcmd = Chr(34) & str7z & Chr(34) & " e " & Chr(34) & SourceDir & Chr(34) _
& " -o" & Chr(34) & Desti & Chr(34) & " -y"
unZip = Shell(strcmd, vbHide)
End Function
tem como usar esse codigo pra zipar com ele