Instance Method
インスタンスメソッド
keyForChildFileWrapper(_:)
Returns the dictionary key used by a directory to identify a given file wrapper.
与えられたファイルラッパーを識別する、ディレクトリによって使われる辞書キーを返します。
Parameters
パラメータ
child
The child file wrapper for which you want the key.
それに対してあなたがキーを望む、子ファイルラッパー。
Return Value
戻り値
Dictionary key used to store the file wrapper in the directory’s list of file wrappers. The dictionary key is a unique filename, which may not be the same as the passed-in file wrapper's preferred filename if more than one file wrapper in the directory's dictionary of children has the same preferred filename. See Accessing File Wrapper Identities in File System Programming Guide for more information about the file-wrapper list structure. Returns nil
if the file wrapper specified in child
is not a child of the directory.
ファイルラッパーをディレクトリの持つファイルラッパーのリストに格納するために使われる辞書キー。辞書キーは特有なファイル名です、それはファイルラッパーの持つ優先ファイル名と同じものではないかもしれません、もしディレクトリの持つ、子らからなる辞書の中の複数のファイルラッパーが同じ優先名を持つならば。ファイルラッパーリスト構造についてのさらなる情報としてAccessing File Wrapper IdentitiesをFile System Programming Guideで見てください。nil
を返します、もしchild
において指定されたファイルラッパーがディレクトリの子でないならば。
Discussion
議論
This method raises NSInternalInconsistencyException
if the receiver is not a directory file wrapper.
このメソッドは、レシーバがディレクトリファイルラッパーでないならば、NSInternalInconsistencyException
を引き起こします。
See Also
参照
Accessing File-Wrapper Information
ファイルラッパー情報にアクセスする
func removeFileWrapper(FileWrapper)
Removes a child file wrapper from the receiver, which must be a directory file wrapper.
子ファイルラッパーをレシーバから取り除きます、それはディレクトリファイルラッパーでなければなりません。
func addFile(withPath: String) -> String
Creates a file wrapper from a given file-system node and adds it to the receiver, which must be a directory file wrapper.
ファイルラッパーをある与えられたファイルシステムノードから作成してそれをレシーバに加えます、それはディレクトリファイルラッパーでなければなりません。
Deprecated
非推奨
func symbolicLinkDestination() -> String
Provides the pathname referenced by the file wrapper object, which must be a symbolic-link file wrapper.
ファイルラッパーオブジェクト、それはシンボリックリンクファイルラッパーである必要があります、によって参照されるパス名を提供します。
Deprecated
非推奨
var symbolicLinkDestinationURL: URL?
The URL referenced by the file wrapper object, which must be a symbolic-link file wrapper.
ファイルラッパーオブジェクトによって参照されるURL、それはシンボリックリンクファイルラッパーでなければなりません。
Related Documentation
関連文書