Craig Boyd's website has been down for awhile:
Is he still around? I need to get syntax on his compression FLL.
Is he still around? I need to get syntax on his compression FLL.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SET LIBRARY TO ("VFPCOMPRESSION.FLL")
m.FILECOUNT = ADIR(TMPFILES,m.DATALOCATION+"*.*")
IF m.FILECOUNT > 0
ZIPOPEN("SOMETHING.ZIP",m.DATALOCATION, .F.)
FOR I = 1 TO m.FILECOUNT
ZIPFILE(m.DATALOCATION+TMPFILES[I,1], .F.)
NEXT
ZIPCLOSE()
ENDIF
SET LIBRARY TO ("VFPCOMPRESSION.FLL")
UNZIPOPEN(m.DATALOCATION+m.ZIPFILENAME)
m.FILECOUNT = UNZIPFILECOUNT()
UNZIPSETFOLDER(m.DATALOCATION)
FOR I = 0 TO m.FILECOUNT
UNZIPBYINDEX(I,m.DATALOCATION,.T.)
NEXT I
UNZIPCLOSE()