How to copy contents of a directory into a another directory programmatically in an iPhone app
I have 2 directories which are created programmatically, say DIR1 & DIR2 and DIR1 have some XML files now I need to copy the contents of DIR! into DIR2 without 开发者_高级运维giving the Contents name
is this possible?
You can use - (BOOL)copyItemAtPath:(NSString *)srcPath toPath:(NSString *)dstPath error:(NSError **)error
method to copy. Refer this link. It will help you.
精彩评论