-2

如何从文件夹 url 中获取所有文件名?下面的代码返回 null。

path = @"http://localhost/urlFolder/images/";

NSArray *directoryContent = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:path error:NULL];
4

1 回答 1

0

你试过另一种方法NSFileManager

- (NSArray *)contentsOfDirectoryAtURL:(NSURL *)url includingPropertiesForKeys:(NSArray *)keys options:(NSDirectoryEnumerationOptions)mask error:(NSError **)error

您可以使用contentsOfDirectoryAtURL:includingPropertiesForKeys:options:error:而不是contentsOfDirectoryAtPath:error:

试试看。快乐编码。:)

于 2012-11-01T06:53:16.647 回答