Instance Method
インスタンスメソッド
addFile(withPath:)
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(_:)
.
OS X v10.6からは、ファイル参照の優先メソッドは、file://
URLを使います。このメソッドを使うよりむしろ、あなたはNSFileWrapper
をイニシャライザの1つでインスタンス化して、それのpreferredFilename
プロパティを必要ならば設定して、そして結果をaddFileWrapper(_:)
に渡すことができます。
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 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、それはシンボリックリンクファイルラッパーでなければなりません。