如何从文件夹 url 中获取所有文件名?下面的代码返回 null。
path = @"http://localhost/urlFolder/images/";
NSArray *directoryContent = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:path error:NULL];
你试过另一种方法NSFileManager
- (NSArray *)contentsOfDirectoryAtURL:(NSURL *)url includingPropertiesForKeys:(NSArray *)keys options:(NSDirectoryEnumerationOptions)mask error:(NSError **)error
您可以使用contentsOfDirectoryAtURL:includingPropertiesForKeys:options:error:
而不是contentsOfDirectoryAtPath:error:
试试看。快乐编码。:)