Hi guys is does the tool vfpcompression.fll unzip any zip.
Thanks Jerry

-----Original Message-----
From: [email protected] [mailto:[email protected]] On Behalf
Of Tracy Pearson
Sent: Tuesday, April 10, 2012 4:27 PM
To: [email protected]
Subject: RE: List files in a Zip with vfpcompression.fll

Garry Bettle wrote on 2012-04-10: 
>  Hi Ted,
>  
>  That was it! Many thanks.
>  
>  Working super fast now ... nothing moves quicker than the Fox!
>  
>  * from
>
http://www.sweetpotatosoftware.com/SPSBlog/PermaLink,guid,07ed8874-8781-4e76
-878b-92b3f4cfc8b3.aspx
>  
>  RELEASE ALL
>  
>  lcFileZip = [FilesDownloaded.zip]
>  
>  CREATE CURSOR curFilesDownloaded ( FileName c( 50))
>  
>  SET LIBRARY TO [vfpcompression.fll]
>  
>  IF UnZipOpen( lcFileZip)
>      = UnzipGotoTopFile()
>      DO WHILE UnzipGotoNextFile()
>          = UnzipAFileInfo( [laTemp])
>          INSERT INTO curFilesDownloaded ( FileName) VALUES ( laTemp[ 1])
>          lnRecCount = RECCOUNT( [curFilesDownloaded])
>          IF lnRecCount % 100 = 0
>              WAIT TRANSFORM( lnRecCount) + [ ...] WINDOW NOWAIT
>          ENDIF
>      ENDDO
>      UnZipClose()
>  ENDIF
>  
>  WAIT TRANSFORM( lnRecCount) + [ ... Done!] WINDOW NOWAIT
>  
>  Cheers,
>  
>  Garry
> 

Garry,

Is that code missing the first file in the Zip?

Tracy Pearson
PowerChurch Software


[excessive quoting removed by server]

_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/CDCF004AB47C46DBAF8796639D31EFA7@jerryfootePC
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Reply via email to