-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No Streaming (Question / Brain storming) #16
Comments
It sounds like you are misunderstanding what "no streaming" means. When you extract a file from a zip file, you extract it as a stream, as expected. But the zip file itself must not be a stream; it must be a file on disk or in memory, or as in #14, some other sort of random access data. |
No I get that part. I plan on getting the zip file via ftp as a stream. But I only need one file out of that zip of many. |
If #14 is solved you could implement an interface to FTP which supports ranged reads, and then solve it that way. |
Yes this is on point with what I was thinking as well. I guess I'll close this issue and follow the one above. |
I really don't know jack about the zip format, but I am just trying to think out of the box here for possibly having a streaming api.
Since the CD is at the end can we not read the file stream in reverse? Thus then detect the CD.
The main use case I am looking is for getting a single large file out of many in a zip using streaming if possible.
The text was updated successfully, but these errors were encountered: