vote up 2 vote down star
2

Hi,

I have some resources (zipped) that needs to be shipped with my iphone application. When the app launches for the first time, this zipped file needs to be moved/copied to the Documents folder and unzip it there. User can then add more files to this path from the application. Can someone please suggest how can I achieve this?

Thanks!

flag

50% accept rate
One slight drawback with the methods below, so far, is that you are taking up twice the space for storing these resources; one copy making your app larger and a second copy sitting in the Documents directory. You might want to think about whether you can just live with one copy. I guess the question to ask is whether you expect these resources to be read/write or read-only. If the latter, then I would suggest you find a way around the need to copy them. – mahboudz Sep 23 at 10:47
If read-only, but you want them in the Documents folder because the user might add some other files there, and you'd like them all to be in one place, then I would suggest using symbolic links instead of copying the files. – mahboudz Sep 23 at 10:48

3 Answers

vote up 4 vote down check

Based on your comment above:

The reason I want to add a compressed resource because there are multiple files. If I don't compress then I'll need to move files individually. I'll also need to maintain a list of files somewhere so that I can read the file name and then move them. I thought zipping and unzipping was a simpler solution.

You could add all the files to a folder in your bundle. When the app launches for the first time use fast enumeration to run through the folder and what ever it finds in that folder, it copies into the Documents folder. Handling folders within folders is slightly more complex (add recursion maybe). This way you don't have to worry about zip or tar, nor to keep a directory of files to install.

Just place the folder of files you want into Xcode's resources folder and tell it to import as a folder not as a group. That way the files get installed in your resources inside a folder instead of just as individual files all over the place.

EDIT:

Better yet, do what I say about putting all the files you want in one folder, add to your project, but not as a "Group", and then at first launch use:

[[NSFileManager defaultManager] copyItemAtPath:(NSString *)srcPath toPath:(NSString *)dstPath error:(NSError **)error];

and it will copy your whole directory from one place to another. EASY!

link|flag
vote up 2 vote down

While this is available by using the libz.dylib, it really is unnecessary as it save you little (if any) space. You application bundle is already compressed when being transferred to the phone. Compression on top of compression usually yields little additional compression.

Try it out yourself. You may find that shipping your app with unzipped contents may take up just as much space as zipped contents.

link|flag
The reason I want to add a compressed resource because there are multiple files. If I don't compress then I'll need to move files individually. I'll also need to maintain a list of files somewhere so that I can read the file name and then move them. I thought zipping and unzipping was a simpler solution. – Mithin Sep 23 at 4:47
You could use libtar ( feep.net/libtar ) if you just need a way to archive/unarchive and don't want the time complexity of a zip-ped resource. – Alex Reynolds Sep 23 at 4:52
vote up 3 vote down

Add the libz.dylib Framework to your project, and include Deusty's NSData gzip category which will give you compression/decompression methods.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.