If path is not a symbolic link, this parameter has no effect. If path is a symbolic link, then:pathがシンボリックリンクでないならば、このパラメータは効果を持ちません。pathがシンボリックリンクならば、その時:
If true the attributes of the linked-to file are returned, or if the link points to a nonexistent file the method returns nil.trueならばそれへとリンクされたファイルの属性が返されます、またはリンクが存在しないファイルを指すならばこのメソッドはnilを返します。
If false, the attributes of the symbolic link are returned.falseならば、シンボリックリンクの属性が返されます。
Return Value
戻り値
An NSDictionary object that describes the POSIX attributes of the file specified at path. The keys in the dictionary are described in File Attribute Keys. If there is no item at path, returns nil.NSDictionaryオブジェクト、それはpathで指定されたファイルのPOSIX属性を記述します。辞書の中のキーは、File Attribute Keysにおいて記述されます。pathで項目がないならば、nilが返されます。
Discussion
議論
This code example gets several attributes of a file and logs them.
このコード例は、あるファイルの幾つかの属性を取得して、それらを記録します。
Because this method does not return error information, it has been deprecated as of OS X v10.5. Use attributesOfItem(atPath:) instead.
このメソッドがエラー情報を返さないことから、それはOS X v10.5現在で非推奨にされます。attributesOfItem(atPath:)を代わりに使ってください。
Returns a dictionary that describes the attributes of the mounted file system on which a given path resides.
そこにおいて与えられたパスが存在するところのマウントされたファイルシステムの属性を記述する辞書を返します。
An NSFileManager object sends this message to its handler for each error it encounters when copying, moving, removing, or linking files or directories.
ファイルまたはディレクトリをコピー、移動、削除、またはリンクする場合にそれが出くわす各エラーに対するそれのハンドラにこのメッセージを送ったNSFileManagerオブジェクト。
An NSFileManager object sends this message to a handler immediately before attempting to move, copy, rename, or delete, or before attempting to link to a given path.
移動、コピー、名前変更、または消去を試みる直前に、または与えられたパスにリンクを試みる前にハンドラにこのメッセージを送ったNSFileManagerオブジェクト。