Sample code for 30+ languages & platforms
Visual FoxPro

Transition from Zip.AppendNew to Zip.AddEmpty

Provides instructions for replacing deprecated AppendNew method calls with AddEmpty.

Chilkat Visual FoxPro Downloads

Visual FoxPro
LOCAL lnSuccess
LOCAL loZip
LOCAL lcPathInZip
LOCAL loEntryObj
LOCAL lnIsDir
LOCAL loZe
LOCAL lnIndex

lnSuccess = 0

loZip = CreateObject('Chilkat.Zip')

* ...
* ...
lcPathInZip = "example.dat"

* ------------------------------------------------------------------------
* The AppendNew method is deprecated:

loEntryObj = loZip.AppendNew(lcPathInZip)
IF (loZip.LastMethodSuccess = 0) THEN
    ? loZip.LastErrorText
    RELEASE loZip
    CANCEL
ENDIF

* ...
* ...

RELEASE loEntryObj

* ------------------------------------------------------------------------
* Do the equivalent using AddEmpty.

* Indicate the newly appended entry is not a directory entry.
lnIsDir = 0

lnSuccess = loZip.AddEmpty(lnIsDir,lcPathInZip)
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