Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

VBScript Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(VBScript) Zip Append Files and Entry Type

See more Zip Examples

Demonstrates appending files to a zip object for writing a .zip. Also explains the "entry type".

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
'Create a Unicode (utf-16) output text file.
Set outFile = fso.CreateTextFile("output.txt", True, True)

' This example requires the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

set zip = CreateObject("Chilkat_9_5_0.Zip")

zipPath = "c:/temp/qa_output/out.zip"

' Initialize the zip object with the path of the .zip to be created.
success = zip.NewZip(zipPath)

' Recursively append to the zip object the paths of the files and directories in a directory tree.
' At this point we are not creating the .zip, nor are we reading the contents of the files.
' We are simply appending references to the files and directories in the local filesystem
' that will get processed when WriteZip is called.
recurse = 1
saveExtraPath = 0
archiveOnly = 0
includeHidden = 1
includeSystem = 0
success = zip.AppendFilesEx("c:/temp/files_to_zip",recurse,saveExtraPath,archiveOnly,includeHidden,includeSystem)
If (success = 0) Then
    outFile.WriteLine(zip.LastErrorText)
    WScript.Quit
End If

' Note: We can iterate over the references to the files that will be processed when zipping:
count = zip.NumEntries
i = 0
Do While i < count
    ' entry is a Chilkat_9_5_0.ZipEntry
    Set entry = zip.GetEntryByIndex(i)
    outFile.WriteLine(entry.FileName & " entryType = " & entry.EntryType)

    i = i + 1
Loop
outFile.WriteLine("----")

' Sample output for the above loop:
' The entry type = 1, because these are entries that are references to files in the local filesystem
' that are to be processed when the zip is written.

' hamlet.xml entryType = 1
' hello.pdf entryType = 1
' ...
' ...

' Possible entry type values:
' 0 - Mapped Entry: An entry in an existing Zip file.
' 1 - File Entry: A file not yet in memory, but referenced. These entries are added by calling AppendFiles, AppendFilesEx, AppendOneFileOrDir, etc.
' 2 - Data Entry: An entry containing uncompressed data from memory. These entries are added by calling AppendData, AppendString, etc.
' 3 - Null Entry: An entry that no longer exists in the .zip.
' 4 - New Directory Entry: A directory entry added by calling AppendNewDir. 

' The application can continue to add additional entries.
' For example:
' eTemp is a Chilkat_9_5_0.ZipEntry
Set eTemp = zip.AppendString("helloWorld.txt","Hello World")

' Now let's have a look at what will get zipped when we write the zip:
count = zip.NumEntries
i = 0
Do While i < count
    ' entry is a Chilkat_9_5_0.ZipEntry
    Set entry = zip.GetEntryByIndex(i)
    outFile.WriteLine(entry.FileName & " entryType = " & entry.EntryType)

    i = i + 1
Loop
outFile.WriteLine("----")

' You can see that "helloWorld.txt" is added. 
' Its entryType = 2, which means it is in-memory data (it is not a reference to a file in the local filesystem).

' hamlet.xml entryType = 1
' hello.pdf entryType = 1
' ...
' ...
' helloWorld.txt entryType = 2

' ----------------------------------------------------------------------------
' Now we'll write the zip to a .zip file.
zip.FileName = zipPath
success = zip.WriteZip()
If (success = 0) Then
    outFile.WriteLine(zip.LastErrorText)
    WScript.Quit
End If

' Let's look again at the entries in the .zip
count = zip.NumEntries
i = 0
Do While i < count
    ' entry is a Chilkat_9_5_0.ZipEntry
    Set entry = zip.GetEntryByIndex(i)
    outFile.WriteLine(entry.FileName & " entryType = " & entry.EntryType)

    i = i + 1
Loop
outFile.WriteLine("----")

' After writing the .zip, the entry types change to 0.
' Entry type 0 indicates that it's a "mapped entry", which is an entry in an existing (and currently open) .zip file.

' hamlet.xml entryType = 0
' hello.pdf entryType = 0
' ...
' ...
' helloWorld.txt entryType = 0

' ----------------------------------------------------------------------------
' If desired, we could continue adding additional entries of any kind (files or data) to the currently open .zip archive...

' eTemp is a Chilkat_9_5_0.ZipEntry
Set eTemp = zip.AppendString("helloWorld2.txt","Hello World 2")

' Write the .zip, including the new entries..
success = zip.WriteZip()
If (success = 0) Then
    outFile.WriteLine(zip.LastErrorText)
    WScript.Quit
End If

' Finally, let's look again at the entries in the .zip
count = zip.NumEntries
i = 0
Do While i < count
    ' entry is a Chilkat_9_5_0.ZipEntry
    Set entry = zip.GetEntryByIndex(i)
    outFile.WriteLine(entry.FileName & " entryType = " & entry.EntryType)

    i = i + 1
Loop
outFile.WriteLine("----")

' hamlet.xml entryType = 0
' hello.pdf entryType = 0
' ...
' ...
' helloWorld.txt entryType = 0
' helloWorld2.txt entryType = 0

zip.CloseZip 

outFile.WriteLine("Success")

outFile.Close

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.