5

NSDocumentDirectory にサブフォルダーを作成し、作成したフォルダーに次のようにデータを書き込むことができるかどうかを知りたかっただけです。

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);    
NSString *dirPath =[[paths objectAtIndex:0] stringByAppendingPathComponent:@"TestFolder"];  
NSString *filePath =[dirPath stringByAppendingPathComponent:@"testimage.jpg"];  
[imageData writeToFile:filePath atomically:YES];

ご支援いただきありがとうございます。

4

2 に答える 2

5

createDirectoryAtPath :attributes:メソッドは廃止されました。

代わりにcreateDirectoryAtPath:withIntermediateDirectories:attributes:error:を使用してください。

于 2011-02-01T18:40:05.320 に答える
5

writeToFileディレクトリが存在しないため、 が失敗する可能性があります。失敗した場合は、 createDirectoryAtPath:attributes:メソッドNSFileManagerを持つクラスを試すことができます。

于 2010-01-19T15:19:37.770 に答える