gpt4 book ai didi

ios - 是否可以将文件从应用程序沙箱复制到应用程序包?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:17:42 25 4
gpt4 key购买 nike

我可以用以下方法做相反的事情:但不能复制到应用程序包。

    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,    NSUserDomainMask, YES);
NSString *documentsPath = [paths objectAtIndex:0];

// Destination path
NSString *fileInDocumentsPath = [documentsPath stringByAppendingPathComponent:@"Passwords File.txt"];
// Origin path - used when file is in bundle
NSString *fileInBundlePath = [[NSBundle mainBundle] pathForResource:@"Passwords File" ofType:@"txt"];

// File manager for copying File in Bundle to Sandbox
NSError *error = nil;
NSFileManager *fileManager = [NSFileManager defaultManager];
[fileManager copyItemAtPath:fileInBundlePath toPath:fileInDocumentsPath error:&error];

最佳答案

应用程序包是只读的。部署应用后无法修改。

如果应用程序支持 File Sharing,则可以通过 iTunes 访问应用程序文档文件夹中的文件.查看How to enable File Sharing for my app .

关于ios - 是否可以将文件从应用程序沙箱复制到应用程序包?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18089692/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com