NSFileManager - 创建一个只读文件
Posted
技术标签:
【中文标题】NSFileManager - 创建一个只读文件【英文标题】:NSFileManager - Create a readonly file 【发布时间】:2015-04-06 17:20:25 【问题描述】:我有一个使用 NSFileManager 创建的文件,但找不到使其成为只读的方法。我在整个互联网和 Apple 的 NSFileManager Class Reference 中进行了搜索,但找不到任何东西。这是文件创建位置的代码。
if ([fm createFileAtPath:fileName contents:inputData attributes:nil] == NO)
NSLog(@"Error!");
return 1;
【问题讨论】:
【参考方案1】:使用[NSFileManager defaultManager]
的setAttributes:
删除文件读取位。 Thisposts 解释它。
以下将权限设置为 -rwxrwxrwx (0777)。将 0777 替换为您想要的权限。
NSDictionary *attributes;
[attributes setValue:[NSNumber numberWithShort:0777] forKey:NSFilePosixPermissions];
[[NSFileManager defaultManager] setAttributes:attributes ofItemAtPath:@"/path/to/file"]
【讨论】:
非常感谢。我是新手,所以您能否提供一个使用setAttributes
的示例,最好在此示例中使用【参考方案2】:
使用:
[attributes setValue:[NSNumber numberWithShort:0777] forKey:NSFilePosixPermissions];
[filemanager setAttributes:atributes ofItemAtPath:yourPath error:nil];
【讨论】:
以上是关于NSFileManager - 创建一个只读文件的主要内容,如果未能解决你的问题,请参考以下文章