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

getRelationship(_:ofDirectoryAt:toItemAt:)

Determines the type of relationship that exists between a directory and an item. あるディレクトリとある項目の間に存在する関係の型を決定します。

Declaration 宣言

func getRelationship(_ outRelationship: UnsafeMutablePointer<FileManager.URLRelationship>, 
       ofDirectoryAt directoryURL: URL, 
            toItemAt otherURL: URL) throws

Parameters パラメータ

outRelationship

A pointer to a variable in which to put the relationship between directoryURL and otherURL. For a list of possible values, see FileManager.URLRelationship. directoryURLotherURLとの間の関係が置かれることになる変数へのポインタ。可能な値の一覧として、FileManager.URLRelationshipを見てください。

directoryURL

The URL of the directory that potentially contains the item in otherURL. The URL in this parameter must specify a directory. This parameter must not be nil. 潜在的にotherURLの中の項目を含むディレクトリのURL。このパラメータの中のURLは、ディレクトリを指定しなければなりません。このパラメータは、nilであってはいけません。

otherURL

The URL of the file or directory whose relationship to directoryURL is being tested. This parameter must not be nil. ファイルまたはディレクトリのURL、それのdirectoryURLへの関係がテストされています。このパラメータは、nilであってはいけません。

Return Value 戻り値

true if the relationship between the items was successfully determined, or false if an error occurred. true、もし項目間の関係がうまく決定されたならば、またはfalse、もしエラーが発生したならば。

Discussion 議論

Use this method to determine the relationship between an item and a directory whose location you already know. If the relationship between the items is determined successfully, this method sets the value of the outRelationship parameter to an appropriate value. The directory may contain the item, it may be the same as the item, or it may not have a direct relationship to the item. このメソッドを使って、ある項目とそれの位置をあなたがすでに知っているディレクトリとの間の関係を決定してください。項目間の関係がうまく決定されるならば、このメソッドはoutRelationshipパラメータの値を適切な値に設定します。ディレクトリはその項目を含むかもしれません、それはその項目と同じかもしれません、またはそれはその項目に対して直接の関係を持たないかもしれません。

See Also 参照

Getting the Relationship Between Items 項目間の関係を取得する