我在iphone应用程序中录制了音频,以便如何访问该文件
存储它的文件路径。
NSString * path = [NSString stringWithFormat:@"%@/Documents/%@_%@_%@.wav", NSHomeDirectory(), theCellData.firstName,theCellData.lasttName,type];
答案 0 :(得分:0)
嗨,你认为你想要这样的东西
NSString *filePath = [[self applicationDocumentsDirectory] stringByAppendingPathComponent:@"filename.extension"];
和其他地方:
-(NSString *)applicationDocumentsDirectory {
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *basePath = ([paths count] > 0) ? [paths objectAtIndex:0] : nil;
return basePath;
}
其中filepath给出文件在文档目录中的位置....