- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将几个图像文件从 MainBundle/SampleImages 文件夹复制到应用程序 NSDocumentDirectory/Library 文件夹,但无法执行此操作。我已检查图像是否位于 .app/Mainbundle/SampleImages 目录中,并且还检查了是否在 NSDocumentsDirectory 中创建了 Library 文件夹,但没有复制任何文件。
我尝试了下面给出的两种方法,但没有成功。这是我用来复制文件的代码。
第一种方法
NSArray *paths = NSSearchPathForDirectoriesInDomains( NSDocumentDirectory,NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *documentLibraryFolderPath = [documentsDirectory stringByAppendingPathComponent:@"Library"];
NSString *resourceSampleImagesFolderPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"SampleImages"];
NSData *mainBundleFile = [NSData dataWithContentsOfFile:resourceSampleImagesFolderPath];
[[NSFileManager defaultManager] createFileAtPath:documentLibraryFolderPath
contents:mainBundleFile
attributes:nil];
第二种方法
NSArray *paths = NSSearchPathForDirectoriesInDomains( NSDocumentDirectory,NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *documentSampleImagesFolderPath = [documentsDirectory stringByAppendingPathComponent:@"Library"];
NSString *resourceSampleImagesFolderPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"SampleImages/"];
[fileManager createDirectoryAtPath: documentSampleImagesFolderPath attributes:nil];
if([fileManager copyItemAtPath:resourceSampleImagesFolderPath toPath:documentSampleImagesFolderPath error:&error]) {
NSLog(@"success");
}
else {
NSLog(@"Failure");
NSLog(@"%d",error);
}
我花了几个小时寻找解决方案,如果您能提供任何帮助,我们将不胜感激。
谢谢
舒迈斯·乌尔·哈克
最佳答案
我用第二种方法通过稍微改变一下就完成了。不需要创建目录,因为 SDK 文档说目标目录必须不存在。
NSFileManager *fileManager = [NSFileManager defaultManager];
NSError *error;
NSArray *paths = NSSearchPathForDirectoriesInDomains( NSDocumentDirectory,
NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *documentDBFolderPath = [documentsDirectory stringByAppendingPathComponent:@"Library"];
NSString *resourceDBFolderPath = [[[NSBundle mainBundle] resourcePath]
stringByAppendingPathComponent:@"SampleImages"];
[fileManager copyItemAtPath:resourceDBFolderPath toPath:documentDBFolderPath error:&error];
关于iPhone : Unable to copy from MainBundle to NSDocumentDirectory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3331812/
我在 iPad 上使用 Split View模板。 在我的 MasterViewController代码: NSBundle * bundle = [NSBundle mainBundle]; 有效。
这个问题在这里已经有了答案: modifying a plist is not working (3 个答案) 关闭 10 年前。
在一些流行的开源 swift 项目中。我注意到以下方法用于从主包加载文件。 @objc class TestClass: NSObject { } let bundle = NSBundle(forC
我正在尝试将几个图像文件从 MainBundle/SampleImages 文件夹复制到应用程序 NSDocumentDirectory/Library 文件夹,但无法执行此操作。我已检查图像是否位于
基本上问题正是标题所说的。 我的应用程序在模拟器上运行顺畅,没有任何崩溃。 事实上,以前的版本在应用商店。我在这里和那里做了一些小改动,突然它开始在一个非常奇怪的地方崩溃。 我用 [NSBundle
我刚刚重新安装了我的 mac 和 Xcode。然后[NSBundle mainBundle]由于某种我不知道的原因,总是返回 nil。 非常感谢你! 这是我的调试 Pane 的屏幕截图: 最佳答案 您
我正在使用 GLKit 使用 OpenGL ES 2.0 制作一个 iPhone 应用程序。我正在使用 GLKTextureLoader 加载纹理。当我的纹理位于 mainBundle 中时 - 一切
我想不出关于 pathForResource 是如何工作的任何韵律或原因……或者更恰本地说,不是。 我的应用程序中有一堆 nib,它们都在/Build Phases/Copy Bundle Resou
在我的代码中我想打开一个html文件,所以添加了下面这行代码: NSString* path = [[NSBundle mainBundle] pathForResource:@"cheese"ofT
我有一个正在运行的 iOS 项目,在 git 分支上工作时,该项目突然不会从主 Bundle 加载任何资源...我正在为一个简单的 AVAudioPlayer 加载一个音频文件: NSURL *url
问题:[NSBundle mainBundle] pathForResource 返回 null (0x0) 我看了很多关于这个主题的帖子,这是我发现的: 确保您尝试获取路径的文件在项目中。要检查,请
我不知道检索我的 iphone 应用程序 mainBundle 中资源的所有文件名所需的确切代码。如果我能有这样的代码: NSArray *array = [[NSBundle mainBundl
RootViewController *rvController = [[RootViewController alloc] initWithNibName:@"RootViewController"
这让我发疯,因为我无法弄清楚世界上到底发生了什么。我一直从主包加载文件,xml 文件,html 文件等。但是,现在我试图获取 javascript 文件的内容,但它永远找不到它。我正在使用: NSDa
我从未加载过 bundle ,所以我不确定为什么这不起作用。我认为这并不重要,但这里有问题的 .xib 与我所有其他 .xib 位于同一个资源文件夹中。 NSArray *array = [[NSBu
此时我的应用程序在设备中崩溃了, [[NSBundle mainBundle] pathForResource 我在这里给出了 pdf 的路径。但在执行时它显示它没有到达那里的路径。这可能是崩溃的原因
此方法 appStoreReceiptURL 是 SKPaymentTransaction 上已弃用的 transactionReceipt 方法的替代品。每个人都说只使用这个调用: NSURL *t
friend , 我在仪器中运行我的代码,它显示 5 行内存泄漏(在以下代码之外)即 cell = [[[NSBundle mainBundle] loadNibNamed:@"ZoomCustomV
我正在尝试从 infoDictionary 中检索一些 URL。 10 次中有 9 次,URL 被正确返回。然而,极少数情况下,URLs 会返回 nil。知道是什么导致了这种行为吗?当这种奇怪的行为发
我有以下代码: NSString *folderPath = [NSString stringWithFormat:@"%@/Objects/", [[NSBundle mainBundle] bun
我是一名优秀的程序员,十分优秀!