如何在 Library 目录中创建私有目录并为其指定应用程序包 ID 的名称?

发布于 2024-11-09 08:51:21 字数 449 浏览 0 评论 0原文

Apple 要求这样做 在本文档中,以及 这里

我不想重新发明轮子,并且确信已经有人这样做了,但我对谷歌并不幸运。有人知道有一个博客指出了如何做到这一点吗?

问题是,我必须在 Library 中使用应用程序包 ID 名称创建此目录,但前提是该目录不存在。

Apple is telling to do so in this document over here, and here.

I'd hate to re-invent the wheel and am sure someone did this already, but I wasn't lucky with Google. Does someone know a blog that points out how to do exactly that?

The problem is, I must create this directory with the app bundle ID name inside Library but only if it does not exist.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葵雨 2024-11-16 08:51:22

我认为这就是您正在寻找的:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);
NSString *libraryPath = [paths objectAtIndex:0];
NSString *bundlePath = [libraryPath stringByAppendingPathComponent:[[NSBundle mainBundle] bundleIdentifier]];
if(![[NSFileManager defaultManager] fileExistsAtPath:bundlePath]) {
    [[NSFileManager defaultManager] createDirectoryAtPath:bundlePath withIntermediateDirectories:YES attributes:nil error:NULL];
}

I think this is what you are looking for:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);
NSString *libraryPath = [paths objectAtIndex:0];
NSString *bundlePath = [libraryPath stringByAppendingPathComponent:[[NSBundle mainBundle] bundleIdentifier]];
if(![[NSFileManager defaultManager] fileExistsAtPath:bundlePath]) {
    [[NSFileManager defaultManager] createDirectoryAtPath:bundlePath withIntermediateDirectories:YES attributes:nil error:NULL];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文