I have a code to get objects out of the path @"/Users/playra/Desktop/2 DivyaLoka/Собрание Тайн"
- (void) setPathProperty:(NSString *)pathProperty
{
_pathProperty = pathProperty;
NSArray* allContents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:pathProperty error:nil];
self.contents = allContents;
[self.tableView reloadData];
self.navigationItem.title = [self.pathProperty lastPathComponent];
}
Below in this line comes object .DS_Store
NSArray* allContents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:pathProperty error:nil];
How to remove it from there?