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

needsToBeUpdated(fromPath:)

Indicates whether the file wrapper needs to be updated to match a given file-system node. 与えられたファイルシステムノードに合致するためにファイルラッパーが更新されることを必要とするかどうかを指し示します。

Declaration 宣言

func needsToBeUpdated(fromPath path: String) -> Bool

Parameters パラメータ

node

file-system node with which to compare the file wrapper. それとファイルラッパーを比較するファイルシステムノード。

Return Value 戻り値

false when the file wrapper needs to be updated to match node, false otherwise. false、ファイルラッパーがnodeと合致するよう更新される必要がある場合は、そうでなければfalse

Discussion 議論

This table describes which attributes of the file wrapper and node are compared to determine whether the file wrapper needs to be updated: この表は、ファイルラッパーが更新される必要があるかどうか決定するのに、ファイルラッパーとnodeのどの属性が比較されるかを記述します。

File-wrapper type ファイルラッパー型

Comparison determinants 比較決定要素

Regular file 一般ファイル

Modification date and access permissions. 修正日とアクセス権。

Directory ディレクトリ

Member hierarchy (recursive). メンバーの階層(再帰的)。

Symbolic link シンボリックリンク

Destination pathname. 行き先パス名。

Special Considerations 特別な注意事項

Beginning with OS X v10.6, the preferred method of referring to files is with a file:// URL. Therefore, this method has been deprecated in favor of matchesContents(of:). OS X v10.6からは、ファイル参照の優先メソッドは、file:// URLを使います。したがって、matchesContents(of:)の方を支持して、このメソッドは非推奨となっています。

See Also 参照

Updating File Wrappers ファイルラッパーを更新する

Related Documentation 関連文書