我有这段代码,但在 NSLog 中我有一个“空”结果
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 是正确的,因为使用浏览器我可以在目录中访问。