changeFileAttributes(_:atPath:)
Changes the attributes of a given file or directory.
Declaration
func changeFileAttributes(_ attributes: [AnyHashable : Any] = [:], atPath path: String) -> BoolParameters
- attributes:
A dictionary containing as keys the attributes to set for
pathand as values the corresponding value for the attribute. You can set following:NSFileBusy,NSFileCreationDate,NSFileExtensionHidden,NSFileGroupOwnerAccountID,NSFileGroupOwnerAccountName,NSFileHFSCreatorCode,NSFileHFSTypeCode,NSFileImmutable,NSFileModificationDate,NSFileOwnerAccountID,NSFileOwnerAccountName,NSFilePosixPermissions. You can change single attributes or any combination of attributes; you need not specify keys for all attributes.For the
NSFilePosixPermissionsvalue, specify a file mode from the OR’d permission bit masks defined insys/stat.h. See the man page for thechmodfunction (man 2 chmod) for an explanation. - path:
A path to a file or directory.
Return Value
true if all changes succeed. If any change fails, returns false, but it is undefined whether any changes actually occurred.
Discussion
As in the POSIX standard, the app either must own the file or directory or must be running as superuser for attribute changes to take effect. The method attempts to make all changes specified in attributes and ignores any rejection of an attempted modification.
The NSFilePosixPermissions value must be initialized with the code representing the POSIX file-permissions bit pattern. NSFileHFSCreatorCode and NSFileHFSTypeCode will only be heeded when path specifies a file.
Special Considerations
Because this method does not return error information, it has been deprecated as of OS X v10.5. Use setAttributes(_:ofItemAtPath:) instead.
See Also
Related Documentation
Deprecated Methods
fileAttributes(atPath:traverseLink:)fileSystemAttributes(atPath:)directoryContents(atPath:)createDirectory(atPath:attributes:)createSymbolicLink(atPath:pathContent:)pathContentOfSymbolicLink(atPath:)fileManager(_:shouldProceedAfterError:)fileManager(_:willProcessPath:)replaceItemAtURL(originalItemURL:withItemAtURL:backupItemName:options:)