我正在尝试在我正在工作的应用程序上启用沙盒。尽管该应用程序在很大程度上依赖于文件系统,但为了创建、保存和加载用户文件,它并不需要将文件放在 App 容器之外。但是通过启用沙盒,我不能再在应用程序中写入文件了。
有没有办法做到这一点?
void DeterminePaths(const string &a_arg0)
{
string s;
FSRef ref_num;
char str_path[1024];
OSErr e = noErr;
e = FSFindFolder(kOnSystemDisk, kCurrentUserFolderType, false, &ref_num);
e = FSRefMakePath(&ref_num, (UInt8*)str_path, 1024);
s = string(str_path);
//Then I add on 's' the local directories for example s + "/silly_things"
}
<dict>
<key>com.apple.security.app-sandbox</key>
<true/>
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
<key>com.apple.security.network.client</key>
<true/>
<key>com.apple.security.network.server</key>
<true/>
</dict>