Search code examples
iphoneobjective-ccopynsfilemanager

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?


Solution

  • You can use - (BOOL)copyItemAtPath:(NSString *)srcPath toPath:(NSString *)dstPath error:(NSError **)error method to copy. Refer this link. It will help you.