gpt4 book ai didi

swift - 如何写入 OS X 上的本地应用程序支持目录

转载 作者:搜寻专家 更新时间:2023-10-31 21:46:20 24 4
gpt4 key购买 nike

我正在为 OS X 编写一个 Swift 应用程序,其主要目的是从插入计算机的 USB 设备读取数据并将其上传到我们的服务层进行分析和存储。该应用旨在供任何在安装该应用的 Mac 上拥有帐户的用户使用。

出于支持和进一步分析目的,该应用还需要在每次上传时包含其安装 ID,即应用首次启动期间生成的 UUID。这使我们的支持团队能够将我们应用程序的安装实例与有权访问它的一组用户相关联,以便更准确地进行故障排除和数据收集。

在我的应用程序中,我将安装 ID 存储在一个文件中,并试图将该文件存储在一个中央位置,即本地应用程序支持目录。

更具体地说,我想将它存储在以下位置:

Macintosh HD/Library/Application Support/MyApp/installId/installId.txt.

这就是我尝试在 Application Support 目录中保存文件的方式:

var installId = String()
let fileManager = FileManager.default
var isDir: ObjCBool = false
if let appSupportDirectory = fileManager.urls(for: .applicationSupportDirectory, in: .localDomainMask).first {
let installIdDirectory = appSupportDirectory.appendingPathComponent(Bundle.main.bundleIdentifier ?? "MyApp").appendingPathComponent("installId")
let installIdFile = installIdDirectory.appendingPathComponent("installId.txt")
do {
if fileManager.fileExists(atPath: installIdFile.path, isDirectory: &isDir) {
if !isDir.boolValue {
let data = try String.init(contentsOf: installIdFile)
installId = String(data.split(separator: ":")[1])installId))")
}
else {
print("\nError: installId file appears to be a directory.")
}
}
else {
try fileManager.createDirectory(at: installIdDirectory, withIntermediateDirectories: true, attributes: nil)
let pendingInstallId = "installId:\(UUID())"
try pendingInstallId.write(to: installIdFile, atomically: false, encoding: String.Encoding.utf8)
installId = pendingInstallId
}
} catch {
print("\nError: \(error.localizedDescription)")
}
}
else {
print("\nError: Could not find Application Support Directory.")
}

当我运行我的应用程序时,我收到以下错误:

You don't have permission to save the file "installId" in the folder "MyApp".

错误没有发生;但是,如果我选择将我的文件存储在应用程序支持目录中的用户域掩码中。包含安装 ID 的文件已创建并存储在我的用户应用程序支持目录中名为 MyApp 的文件夹中。

我尝试寻找解决问题的办法,但收效甚微。有些帖子声称我试图在其中存储我的文件的目录是为具有管理员权限的应用程序保留的 (source 1),而其他帖子则声称我应该改为使用用户域掩码中的应用程序支持目录来执行此类任务 (source 2)。但是,我需要此文件可供任何在安装了该应用程序的 Mac 上拥有帐户的用户访问,因此本地域掩码的应用程序支持目录似乎更适合这种情况。

有人可以帮助我或指出正确的方向吗?如何将数据保存到该目录?如果我不能这样做,是否有另一个中心位置可以让我在用户不太可能冒险进入和删除该数据的地方执行此操作?

提前致谢!

最佳答案

目录/Library/Application Support/ 属于root。您可以通过键入以下内容在终端中看到它:

$ ls -al /Library | grep Appl*

drwxr-xr-x 15 root admin 480 Jan 4 16:10 Application Support

要写入该目录,您的应用程序需要 root 权限。引用Apple Documentation安全地实现这一点。 Apple 文档提到了 authopen,在您的 App 首次运行时在支持文件夹中创建一个文件似乎是合理的。

关于swift - 如何写入 OS X 上的本地应用程序支持目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48193641/

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