2013-04-09 87 views
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"} 

(錯誤消息被手動包裹以便於閱讀。)

回答

0

路徑看起來有點混亂。你能否更新你的問題以包含「somepath」實際創建的部分?我問的原因是因爲搜索「可可513」出現this SO question

相關問題