Page 1 of 1
are zips ever unziped to the file system? or only into memory
Posted: Sun Aug 24, 2025 3:55 am
by ilikehackinggames
are zips like map files mod files and any outer zips ever exstracted to the filesystem anywhere or are they only ever exstracted in memory?
Re: are zips ever unziped to the file system? or only into memory
Posted: Sun Aug 24, 2025 3:58 am
by ilikehackinggames
also what zip library are you using? the licenses page shows you have both minizip and zlib as dependencys
Re: are zips ever unziped to the file system? or only into memory
Posted: Tue Aug 26, 2025 7:47 pm
by Rseding91
Zip save file contents are only ever extracted into system memory. Other stuff in the zip file might be extracted into the "currently playing" directory.
We use both minizip and zlib. zlib does the inflate/deflate algorithm logic and minizip does the handling of the zip file structure in memory.