Implementation ideas to store multiple files within a single file for faster access?
- by eminemence
My requirement is to store a large number of files within a single file.The files stored could be anything like images, videos or simple text files as well. I want some ideas to implement the same. I am thinking of implementing a file system within a file, but am not sure if its a good idea.
The main area of concern here is the access time. Also I want to provide encryption for this single file.
Any suggestions are welcome.