- componentsToDisplayForPath:
- displayNameAtPath:
- attributesOfItemAtPath:error:
- setAttributes:ofItemAtPath:error:
Availability 有効性
Technology
- (NSDictionary
<NSFileAttributeKey
, id
> *)attributesOfFileSystemForPath:(NSString
*)path
error:(NSError
* _Nullable *)error;
path
Any pathname within the mounted file system. マウントされたファイルシステム内部の何らかのパス名。
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
をこのパラメータに対して指定するかもしれません、もしあなたがエラー情報を望まないならば。
An NSDictionary
object that describes the attributes of the mounted file system on which path
resides, or nil
if an error occurs. See File-System Attribute Keys
for a description of the keys available in the dictionary.
あるNSDictionary
オブジェクト、それはそれにpath
が居住するところのマウント済みファイルシステムの属性を記述します、またはnil
、もしエラーが発生するならば。File-System Attribute Keys
をこの辞書で利用可能なキーの記述のために見てください。
This method does not traverse a terminal symbolic link. このメソッドは、ターミナルシンボリックリンクを辿りません。
Handling Errors in Swift: Swiftでのエラー処理:
In Swift, this method returns a nonoptional result and is marked with the throws
keyword to indicate that it throws an error in cases of failure.
Swiftでは、このメソッドは非オプショナルの結果を返します、そして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エラーパラメータについてで記述されるように。
- componentsToDisplayForPath:
- displayNameAtPath:
- attributesOfItemAtPath:error:
- setAttributes:ofItemAtPath:error: