Instance Method
インスタンスメソッド
addFileWrapper:
Adds a child file wrapper to the receiver, which must be a directory file wrapper.
子ファイルラッパーをレシーバに追加します、それはディレクトリファイルラッパーでなければなりません。
Parameters
パラメータ
child
File wrapper to add to the directory.
ディレクトリに加えることになるファイルラッパー。
Return Value
戻り値
Dictionary key used to store fileWrapper
in the directory’s list of file wrappers. The dictionary key is a unique filename, which is the same as the passed-in file wrapper's preferred filename unless that name is already in use as a key in the directory’s dictionary of children. See Accessing File Wrapper Identities in File System Programming Guide for more information about the file-wrapper list structure.
fileWrapper
をディレクトリの持つファイルラッパーのリストに格納するために使われる辞書キー。辞書キーは特有なファイル名です、それは中に渡されたファイルラッパーの持つ優先ファイル名と同じです、ディレクトリの持つ、子らからなる辞書の中のあるキーとして既にその名前が使用中でない限りは。ファイルラッパーリスト構造についてのさらなる情報としてAccessing File Wrapper IdentitiesをFile System Programming Guideで見てください。
Discussion
議論
Use this method to add an existing file wrapper as a child of a directory file wrapper. If the file wrapper does not have a preferred filename, set the preferredFilename
property to give it one before calling addFileWrapper:
. To create a new file wrapper and add it to a directory, use the addRegularFileWithContents:preferredFilename:
method.
このメソッドを使って、既存のファイルラッパーをディレクトリファイルラッパーの子として加えてください。ファイルラッパーが優先ファイル名を持たないならば、preferredFilename
を設定してやっつけてください、addFileWrapper:
を呼び出す前に。新しいファイルラッパーを作成してそれをディレクトリに加えるには、addRegularFileWithContents:preferredFilename:
メソッドを使ってください。
Special Considerations
特別な注意事項
This method raises NSInternalInconsistencyException
if the receiver is not a directory file wrapper.
このメソッドは、レシーバがディレクトリファイルラッパーでないならば、NSInternalInconsistencyException
を引き起こします。
This method raises NSInvalidArgumentException
if the child file wrapper doesn’t have a preferred name.
このメソッドは、NSInvalidArgumentException
を引き起こします、もし子ファイルラッパーが優先名を持たないならば。
See Also
参照
Accessing File-Wrapper Information
ファイルラッパー情報にアクセスする
fileWrappers
The file wrappers contained by a directory file wrapper.
ファイルラッパーは、ディレクトリファイルラッパーによって含まれます。
- removeFileWrapper:
Removes a child file wrapper from the receiver, which must be a directory file wrapper.
子ファイルラッパーをレシーバから取り除きます、それはディレクトリファイルラッパーでなければなりません。
- addFileWithPath:
Creates a file wrapper from a given file-system node and adds it to the receiver, which must be a directory file wrapper.
ファイルラッパーをある与えられたファイルシステムノードから作成してそれをレシーバに加えます、それはディレクトリファイルラッパーでなければなりません。
Deprecated
非推奨
- addRegularFileWithContents:preferredFilename:
Creates a regular-file file wrapper with the given contents and adds it to the receiver, which must be a directory file wrapper.
与えられた内容を持つ通常ファイルファイルラッパーを作成してそれをレシーバに加えます、それはディレクトリファイルラッパーでなければなりません。
- addSymbolicLinkWithDestination:preferredFilename:
Creates a symbolic-link file wrapper pointing to a given file-system node and adds it to the receiver, which must be a directory file wrapper.
ある与えられたファイルシステムノードを指すシンボリックリンクファイルラッパーを作成してそれをレシーバに加えます、それはディレクトリファイルラッパーでなければなりません。
Deprecated
非推奨
- keyForFileWrapper:
Returns the dictionary key used by a directory to identify a given file wrapper.
与えられたファイルラッパーを識別する、ディレクトリによって使われる辞書キーを返します。
- symbolicLinkDestination
Provides the pathname referenced by the file wrapper object, which must be a symbolic-link file wrapper.
ファイルラッパーオブジェクト、それはシンボリックリンクファイルラッパーである必要があります、によって参照されるパス名を提供します。
Deprecated
非推奨
symbolicLinkDestinationURL
The URL referenced by the file wrapper object, which must be a symbolic-link file wrapper.
ファイルラッパーオブジェクトによって参照されるURL、それはシンボリックリンクファイルラッパーでなければなりません。
Related Documentation
関連文書
preferredFilename
The preferred filename for the file wrapper object.
ファイルラッパーオブジェクトに対する優先ファイル名。