Visual FoxPro
Visual FoxPro
Transition from Zip.AppendNewDir to Zip.AddEmpty
Provides instructions for replacing deprecated AppendNewDir method calls with AddEmpty.Chilkat Visual FoxPro Downloads
LOCAL lnSuccess
LOCAL loZip
LOCAL lcPathInZip
LOCAL loEntryObj
LOCAL lnIsDir
LOCAL loZe
LOCAL lnIndex
lnSuccess = 0
loZip = CreateObject('Chilkat.Zip')
* ...
* ...
lcPathInZip = "exampleDir"
* ------------------------------------------------------------------------
* The AppendNewDir method is deprecated:
loEntryObj = loZip.AppendNewDir(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 a directory entry.
lnIsDir = 1
* Instead of returning the zip entry object, we just return success/failure.
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