- getRelationship:ofDirectory:inDomain:toItemAtURL:error:
NSURLRelationship
Availability 有効性
Technology
- (BOOL)getRelationship:(NSURLRelationship
*)outRelationship
ofDirectoryAtURL:(NSURL
*)directoryURL
toItemAtURL:(NSURL
*)otherURL
error:(NSError
* _Nullable *)error;
outRelationship
A pointer to a variable in which to put the relationship between directory
and other
. For a list of possible values, see NSURLRelationship
.
directory
とother
との間の関係が置かれることになる変数へのポインタ。可能な値のリストとして、NSURLRelationship
を見てください。
directoryURL
The URL of the directory that potentially contains the item in other
. The URL in this parameter must specify a directory. This parameter must not be nil
.
潜在的にother
の中の項目を含むディレクトリのURL。このパラメータの中のURLは、ディレクトリを指定しなければなりません。このパラメータは、nil
であってはいけません。
otherURL
The URL of the file or directory whose relationship to directory
is being tested. This parameter must not be nil
.
ファイルまたはディレクトリのURL、それのdirectory
への関係がテストされています。このパラメータは、nil
であってはいけません。
error
On input, a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil
for this parameter if you do not want the error information.
入力では、エラーオブジェクトへのポインタ。エラーが発生するならば、このポインタはエラー情報を含んでいる実際のエラーオブジェクトへと設定されます。あなたは、nil
をこのパラメータに対して指定するかもしれません、もしあなたがエラー情報を望まないならば。
YES
if the relationship between the items was successfully determined, or NO
if an error occurred.
YES
、もし項目間の関係がうまく決定されたならば、またはNO
、もしエラーが発生したならば。
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 out
parameter to an appropriate value and returns YES
. 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.
このメソッドを使って、ある項目とそれの位置をあなたがすでに知っているディレクトリとの間の関係を決定してください。項目間の関係がうまく決定されるならば、このメソッドはout
パラメータの値を適切な値に設定して、YES
を返します。ディレクトリはその項目を含むかもしれません、それはその項目と同じかもしれません、またはそれはその項目に対して直接の関係を持たないかもしれません。
Handling Errors in Swift: Swiftでのエラー処理:
In Swift, this method returns Void
and is marked with the throws
keyword to indicate that it throws an error in cases of failure.
Swiftでは、このメソッドはVoid
を返します、そして失敗の場合にエラーをスローすることを指し示すためにthrows
キーワードで印されます。
You call this method in a try
expression and handle any errors in the catch
clauses of a do
statement, as described in Error Handling in The Swift Programming Language and About Imported Cocoa Error Parameters.
あなたはこのメソッドをtry
式の中で呼び出して、あらゆるエラーをdo
文のcatch
節で取り扱います、The Swift Programming Languageのエラー処理そしてインポートされるCocoaエラーパラメータについてで記述されるように。
- getRelationship:ofDirectory:inDomain:toItemAtURL:error:
NSURLRelationship