我正在将许多文件写入磁盘,我想将它们分成不同的类别,但我该怎么做?
答案 0 :(得分:0)
请参阅NSFileManager
课程中的以下方法:
- (BOOL)createDirectoryAtPath:(NSString *)path attributes:(NSDictionary *)attributes
- (BOOL)createDirectoryAtPath:(NSString *)path withIntermediateDirectories:(BOOL)createIntermediates attributes:(NSDictionary *)attributes error:(NSError **)error
另请注意,您无法在应用捆绑中写入任何内容。但是,应用程序沙箱包含几个可以编写的文件夹(它们之间的选择取决于您的需要)。有关详细信息,请参阅"Commonly Used Directories"。