ilango rajagopal
unread,Apr 8, 2014, 3:33:30 AM4/8/14Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sbas...@gmail.com, alche...@googlegroups.com
I'm developing an app to view and extract zip files. I used the
ZipArchive header from zip library. When I called ZipArchive.entries()
function, it does not return any [ZipEntry] array. It just starts to
take input from standard input stream i.e from the terminal
continuously. My Code is:
var f=fopen_r(filename)
var arch:ZipArchive=new ZipArchive(f)
var ent=arch.entries() // At this place, the terminal starts reading
input from terminal continuously.
To check the code, I've used following code:
var f=fopen_r(filename)
println("Working correct 1")
var arch:ZipArchive=new ZipArchive(f)
println("Working correct 2")
var ent=arch.entries()
println("Working correct 3")
When the above code is executed, it prints Working correct 1 and
Working correct 2. Then it starts reading continuously from terminal.
Is this a bug in zip library...? I've mailed this to you because I
cannot create a new topic in Google groups since I'm browsing in a
mobile.