Hey guys and gals,
I'm developing an app for a client that will require custom .zip data files (i.e. images, video, audio, folder structure, etc) to be downloaded to the iPad from a webserver and then unzipped on the iPad to the documents folder to be accessed later with system.io. AssetBundles are not an option as the user will be creating these ZIP archives through na desktop application.
The unzipping works fine on local files (c:/whatever.zip) and I know who to use wwwform.
Question: can WWWform be used in this manner? My tests seem to say no. If not is there a .NET library available I should be using? Anyone now of a commercial plugin/solution for this?
Below is some pseudo code to illustrate:
var url : String = "http://www.somesite.com/test.zip";
var www = new WWW(url);
// wait until the download is done
while(!www.isDone)
//print(www.progress);
yield www;
if(www.isDone) {
myZipFile = www.bytes;
showButton = true;
FolderZipper.ZipUtil.UnZipFiles("c:/_PTP/" + myZipFile,"C:/_PTP/","",false);
}