Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将一些文件存储在应用程序文档文件夹中。我想将这些文件的名称存储在 NSArray 对象中。例如,我在应用程序中有 3 个 csv 文件,名为一、二、三。我想在 NSArray 中获取这些名称。我正在使用 XCode 4.4.1 和 iOS 5。
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSError *error = nil; NSArray *files = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:[paths objectAtIndex:0] error:&error];