私はこのコードを持っていますが、NSLogには「null」の結果があります
NSString *tmp = @"http://192.168.0.13:8888/dev/";
NSError *error = nil;
NSURL *url = [NSURL URLWithString:tmp];
NSArray *properties = [NSArray arrayWithObjects: NSURLLocalizedNameKey,
NSURLCreationDateKey, NSURLLocalizedTypeDescriptionKey, nil];
NSArray *array = [[NSFileManager defaultManager]
contentsOfDirectoryAtURL:url
includingPropertiesForKeys:properties
options:(NSDirectoryEnumerationSkipsHiddenFiles)
error:&error];
NSLog(@"array:%@", array);
なぜ?ブラウザでディレクトリにアクセスできるため、URLは正しいです。