1
我必須在組容器中創建一個文件夾。我已經使用以下代碼在組容器中創建文件夾
NSError* error;
BOOL state = [[NSFileManager defaultManager] createDirectoryAtPath:somepath withIntermediateDirectories:YES attributes:nil error:&error];
該應用程序是沙盒應用,而執行上面的代碼中觀察到以下錯誤。這個問題可以解決什麼問題?
Error Domain=NSCocoaErrorDomain Code=513
"You don’t have permission to save the file 「somepath」 in the folder
「Group Containers」." UserInfo=0x21111c0
{NSFilePath=/Users/admin/Library/Containers/mypath/Data/../../../Group Containers/somepath,
NSUnderlyingError=0x21517c0 "The operation couldn’t be completed.
Operation not permitted"}
(錯誤消息被手動包裹以便於閱讀。)