IOS: verify an empty NSHomeDirectory

308 Views Asked by At

can I verify if inside my folder "Documents" in NSHomeDirectory are there or not at least 1 file?

NSError *error;
NSFileManager *fileMgr = [NSFileManager defaultManager];

// Point to Document directory
NSString *documentsDirectory = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];

// Write out the contents of home directory to console
NSLog(@"Documents directory: %@", [fileMgr contentsOfDirectoryAtPath:documentsDirectory error:&error]);
1

There are 1 best solutions below

0
On BEST ANSWER

Sure!

NSFileManager's contentsOfDirectoryAtPath: error: method returns an array.

If it's an array with a count of zero, it's an empty directory.

If it returns an error, then the directory doesn't exist (or you passed in the path wrong).