1

我有一个应用程序,它拍摄一部电影并在视频完成后将其保存到应用程序临时文件夹中,我需要将其移动到设备上的视频文件夹中...。如何使用默认文件管理器完成此操作?

我找到的源代码....如果我将文件保存在文档目录中,我可以从 iPhone 上的视频应用程序访问它吗?

NSFileManager *fileManager = [NSFileManager defaultManager];
NSError *error;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];

NSString *txtPath = [documentsDirectory stringByAppendingPathComponent:@"txtFile.txt"];

if ([fileManager fileExistsAtPath:txtPath] == NO) {
    NSString *resourcePath = [[NSBundle mainBundle] pathForResource:@"txtFile" ofType:@"txt"];
    [fileManager copyItemAtPath:resourcePath toPath:txtPath error:&error];
}
4

1 回答 1

1

NSDocumentDirectory对每个 iOS 应用程序都进行了沙盒处理。您正在寻找的 API 是UISaveVideoAtPathToSavedPhotosAlbum

例如:

UISaveVideoAtPathToSavedPhotosAlbum(videoPath, nil, nil, nil);
于 2013-11-12T15:47:33.130 回答