如何在 iOS 中设置 folders/files 的权限

How to Set Permission for folders/files in iOS

如何设置文档文件夹中 iOS 文件夹和文件的权限?

在文档文件夹中创建文件时是否可以设置只读权限?

或任何替代解决方案?

根据创建文件的方式,您可以指定文件属性。要将文件设置为只读,请传递以下属性:

NSDictionary *attributes = @{ NSFilePosixPermissions : @(0444) };

注意值中的前导 0。这很重要。表示这是一个八进制数。

另一种选择是在创建文件后设置文件的属性:

NSString *path = ... // the path to the file
NSFileManager *fm = [NSFileManager defaultManager];
NSError *error = nil;
if (![fm setAttributes:attributes ofItemAtPath:path error:&error]) {
    NSLog(@"Unable to make %@ read-only: %@", path, error);
}

更新:

为确保保留现有权限,请执行以下操作:

NSString *path = ... // the path to the file
NSFileManager *fm = [NSFileManager defaultManager];
NSError *error = nil;
// Get the current permissions
NSDictionary *currentPerms = [fm attributesOfFileSystemForPath:path error:&error];
if (currentPerms) {
    // Update the permissions with the new permission
    NSMutableDictionary *attributes = [currentPerms mutableCopy];
    attributes[NSFilePosixPermissions] = @(0444);
    if (![fm setAttributes:attributes ofItemAtPath:path error:&error]) {
        NSLog(@"Unable to make %@ read-only: %@", path, error);
    }
} else {
    NSLog(@"Unable to read permissions for %@: %@", path, error);
}