Instance Method
インスタンスメソッド
addFileWithPath:
Creates a file wrapper from a given file-system node and adds it to the receiver, which must be a directory file wrapper.
ファイルラッパーをある与えられたファイルシステムノードから作成してそれをレシーバに加えます、それはディレクトリファイルラッパーでなければなりません。
Parameters
パラメータ
node
file-system node from which to create the file wrapper to add to the directory.
ファイルシステムノード、それからファイルラッパーが作成されてディレクトリに加えられることになります。
Return Value
戻り値
Dictionary key used to store the new file wrapper in the directory’s list of file wrappers. See Accessing File Wrapper Identities in File System Programming Guide for more information.
新しいファイルラッパーをディレクトリの持つファイルラッパーのリストに格納するために使われる辞書キー。Accessing File Wrapper IdentitiesをFile System Programming Guideにおいて、さらなる情報のために見てください。
Discussion
議論
Beginning with OS X v10.6, the preferred method of referring to files is with a file://
URL. Instead of using this method, you can instantiate NSFileWrapper
with one of the initializers, set its preferredFilename
property if necessary, and pass the result to addFileWrapper:
.
This method raises NSInternalInconsistencyException
if the receiver is not a directory file wrapper.
このメソッドは、レシーバがディレクトリファイルラッパーでないならば、NSInternalInconsistencyException
を引き起こします。
See Also
参照
Accessing File-Wrapper Information
ファイルラッパー情報にアクセスする
fileWrappers
The file wrappers contained by a directory file wrapper.
ファイルラッパーは、ディレクトリファイルラッパーによって含まれます。
- addFileWrapper:
Adds a child file wrapper to the receiver, which must be a directory file wrapper.
子ファイルラッパーをレシーバに追加します、それはディレクトリファイルラッパーでなければなりません。
- removeFileWrapper:
Removes a child file wrapper from the receiver, which must be a directory file wrapper.
子ファイルラッパーをレシーバから取り除きます、それはディレクトリファイルラッパーでなければなりません。
- 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、それはシンボリックリンクファイルラッパーでなければなりません。