I do not want the overhead of copying so many files from android assets
directory to my app's internal storage. That is why I have created a zip
file in assets
folder and I will copy that zip
file on my android app's internal storage. After copying it, I will extract/unzip it on the same location and after extraction is complete I will delete this zip
file.
The idea is to remove the overhead of copying so many files. Also while copying so many files I am getting IOException
with some file types. Which again was a hinderance. That is why I am trying to do so as I have discussed above. But the problem is that how can I extract a zip file that is residing in my app's internal storage. I want to extract it on the same location(App's internal storage). How can I achieve this?
Any help or code is appreciated..!!!