schma29
Junior Member
Posts: 2
Registered: 4/28/2006
Location: München
Member Is Offline
|
| posted on 4/30/2006 at 05:50 AM |
|
|
Org. FileSize uncompressed
Is it possible to get FileSize (all after unzip) in the Unzip process??
Reagrds
Matthias
|
|
|
wit
Member
Posts: 24
Registered: 11/19/2004
Member Is Offline
|
| posted on 7/2/2006 at 04:20 AM |
|
|
You can calcualte uncompressed archive size using component FileSize property. e.g.
Dim Size
Size = 0
For I=0 to Zip.FileCount
Size = Size + Zip.FileSize(I)
Next
or you can use asp FileSystemObject object to enumerate extracted folder files and read their sizes
|
|
|