作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用下面的代码获取文件路径:
NSString *executableName = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleExecutable"];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES);
NSString *path = [paths objectAtIndex:0];
path = [path stringByAppendingPathComponent:executableName];
然后我想将数据保存到文件(settings.bundle)
NSString *filePath = [path stringByAppendingPathComponent:@"settings.bundle"];
[someString writeToFile:settingsPath atomically:YES encoding:NSUTF8StringEncoding error:&error];
错误:
Error Domain=NSCocoaErrorDomain Code=4 "The folder “settings.bundle” doesn’t exist." UserInfo=0x7ff8894cecc0 {NSFilePath=/Users/xxxx/Library/Application Support/AppName/settings.bundle, NSUserStringVariant=Folder, NSUnderlyingError=0x7ff8894a1750 "The operation couldn’t be completed. No such file or directory"}
但是如果我手动 mkdir AppName 就没有错误:
mkdir /Users/xxxx/Library/Application Support/AppName
所以我的问题是:Cocoa 无法在 osx 中自动创建文件夹?
最佳答案
试一下:[[NSFileManager defaultManager] createDirectoryAtPath:filePath withIntermediateDirectories:YES attribute:nil error:&error];
该方法不仅会在指定路径创建目录,还会创建任何可能不存在的中间目录。
关于macos - 在osx的沙盒中创建文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11430346/
我是一名优秀的程序员,十分优秀!