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];
ご支援いただきありがとうございます。