次のコード行を使用して、yoyo.txt のファイルを Documents フォルダーに保存しています ::
NSString *docDir = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];
NSLog(@"docDir is yoyo :: %@", docDir);
NSString *FilePath = [docDir stringByAppendingPathComponent:@"yoyo.txt"];
ただし、ファイルを yoyo のフォルダー、つまり Documents フォルダー内に保存したい。つまり、「yoyo」という名前の別のフォルダーを作成し、そこに yoyo.txt のファイルを保存したい。どうやってやるの ??ありがとう。