我已经创建了多个这样的目录
NSArray *directoryNames = [NSArray arrayWithObjects:@"hats",@"bottoms",@"right",@"left",nil];
但是我不知道如何保存到特定目录中。我这样保存
NSString *filePath = [folderPath stringByAppendingPathComponent:@"IMAGE_NAME_HERE.PNG"];
NSData *imageData = UIImagePNGRepresentation(captureImage.image);
[imageData writeToFile:filePath atomically:YES];
但是我不知道如何指定目录。我只希望用户保存到目录帽子中。我怎样才能做到这一点?