I am struggling to work with zipped files e.g.:
julia> using CodecZlib
julia> text = open("2004_CORE.zip")
IOStream(<file 2004_CORE.zip>)
I have several of those type of files to process. Each will contain at least one gzipped xml-file and one or more plain text csv file(s).
My question is: How do I determine which files and filetypes are contained in the zip-file? And how do I stream those files separately to be able to process the XML-files with LightXML and the CSV-files with DataFrames?