最終更新:2012-09-25 (火) 04:53:20 (4458d)
Objective-C/ファイル入出力
Top / Objective-C / ファイル入出力
文字列(NSString)
ファイル読み込み
NSString* text; NSString* path = @"/Users/Destination/text.txt"; NSError* error; text = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:&error];
ファイル書き込み
NSString* text = @"sample text"; NSString* path = @"/Users/Destination/text.txt"; NSError* error; BOOL result; //atomicallyは補助ファイルを使ってファイルの破損を防止するかどうか result = [text writeToFile:path atomically:yes encoding:NSUTF8StringEncoding error:&error];
配列
その他
- NSKeyedArchiver
- NSKeyedUnarchiver?
ファイル操作
ディレクトリ操作
- NSHomeDirectory?