Sample code for 30+ languages & platforms
Visual FoxPro

Transition from Zip.AppendDataEncoded to Zip.AddEncoded

Provides instructions for replacing deprecated AppendDataEncoded method calls with AddEncoded.

Chilkat Visual FoxPro Downloads

Visual FoxPro
LOCAL lnSuccess
LOCAL loZip
LOCAL lcPathInZip
LOCAL lcEncoding
LOCAL lcEncData
LOCAL loEntryObj
LOCAL loZe
LOCAL lnIndex

lnSuccess = 0

loZip = CreateObject('Chilkat.Zip')

* ...
* ...
lcPathInZip = "example.dat"
lcEncoding = "base64"
lcEncData = "... BASE64 DATA ..."

* ------------------------------------------------------------------------
* The AppendDataEncoded method is deprecated:

loEntryObj = loZip.AppendDataEncoded(lcPathInZip,lcEncoding,lcEncData)
IF (loZip.LastMethodSuccess = 0) THEN
    ? loZip.LastErrorText
    RELEASE loZip
    CANCEL
ENDIF

* ...
* ...

RELEASE loEntryObj

* ------------------------------------------------------------------------
* Do the equivalent using AddEncoded.

* Instead of returning the zip entry object, we just return success/failure.
lnSuccess = loZip.AddEncoded(lcPathInZip,lcEncoding,lcEncData)
IF (lnSuccess = 0) THEN
    ? loZip.LastErrorText
    RELEASE loZip
    CANCEL
ENDIF

* Do the following if you need the zip entry object for what was just appended.
* The newly appended entry is the last one.
loZe = CreateObject('Chilkat.ZipEntry')
lnIndex = loZip.NumEntries - 1
loZip.EntryAt(lnIndex,loZe)

RELEASE loZip
RELEASE loZe