Instance Method インスタンスメソッド

setAttributes(_:ofItemAtPath:)

Sets the attributes of the specified file or directory. 指定されたファイルまたはディレクトリの属性を設定します。

Declaration 宣言

func setAttributes(_ attributes: [FileAttributeKey : Any], 
      ofItemAtPath path: String) throws

Parameters パラメータ

attributes

A dictionary containing as keys the attributes to set for path and as values the corresponding value for the attribute. You can set the following attributes: busy, creationDate, extensionHidden, groupOwnerAccountID, groupOwnerAccountName, hfsCreatorCode, hfsTypeCode, immutable, modificationDate, ownerAccountID, ownerAccountName, posixPermissions. You can change single attributes or any combination of attributes; you need not specify keys for all attributes. pathに対して設定する属性をキーとして、そしてその属性に対応する値を値として含んでいる辞書。あなたは以下の属性を設定できます:busy, creationDate, extensionHidden, groupOwnerAccountID, groupOwnerAccountName, hfsCreatorCode, hfsTypeCode, immutable, modificationDate, ownerAccountID, ownerAccountName, posixPermissions。あなたは、単一の属性または任意の組み合わせの属性を変更できます;あなたは、すべての属性に対するキーを指定する必要はありません。

path

The path of 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. true、もしすべての変更がうまくいったならば。何らかの変更が失敗するならば、falseを返します、しかし何らかの変更が実際に生じたかどうかははっきりしません。

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. POSIX標準でのように、アプリは、ファイルまたはディレクトリを所有しなければならないかスーパーユーザとして実行していなければならないか属性変更が効果を持つにはどちらかです。メソッドは、attributesで指定されたすべての変更をしようと試みます、そして試みられた変更のどんな拒絶も無視します。 If the last component of the path is a symbolic link, the system traverses it.

You must initialize the posixPermissions value with the code representing the POSIX file-permissions bit pattern. The system sets hfsCreatorCode and hfsTypeCode only when path specifies a file.

See Also 参照

Getting and Setting Attributes 属性の取得と設定