首先请原谅我的英语。这是我的第一个问题。我已经阅读了很多关于stackoverflow上常见和不常见问题的解决方案,IMO stackoverflow的社区是分支中最信任的。
目前我正在开发iOS应用程序,最近我遇到了一个问题,经过一些研究后我找不到解决方案。当我使用fopen
打开现有文件时,我收到以下错误:
open: Permission denied
以下是导致错误的代码剪切:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
NSString *cachePath = [paths objectAtIndex:0];
BOOL isDir = NO;
NSError *error;
if (! [[NSFileManager defaultManager] fileExistsAtPath:cachePath
isDirectory:&isDir] && isDir == NO) {
[[NSFileManager defaultManager] createDirectoryAtPath:cachePath
withIntermediateDirectories:NO
attributes:nil
error:&error];
}
NSString* filePath = [cachePath stringByAppendingPathComponent:
[NSString stringWithFormat:@"tmpmem%i.bin", count++]];
const char *cPath = [filePath cStringUsingEncoding:NSISOLatin1StringEncoding];
int file = open(cPath, O_RDWR | O_CREAT);
if (file == -1)
{
perror("open");
return NULL;
}
我期待着你的帮助。提前谢谢。
此致 B.季米特洛夫
答案 0 :(得分:2)
您的申请很可能没有任何问题。此错误的常见原因包括缺少对cPath
命名的文件路径上的目录的搜索权限,缺少打开文件进行读取或写入的权限(因为您同时请求O_RDWR
)或者该文件不存在,并且缺少写入应该创建它的目录的权限(因为如果O_CREAT
不存在请求文件创建)。
您应该检查文件和路径名,并确保正确设置所有必要的权限。
答案 1 :(得分:0)
问题解决了。我检查了文件夹的posix权限,它们是493,然后我将它们设置为975,一切都按预期工作。出现了一个新问题:由于标志是4(读),2(写)和1(执行),因此9在posix权限中意味着什么?