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. ファイルラッパーをある与えられたファイルシステムノードから作成してそれをレシーバに加えます、それはディレクトリファイルラッパーでなければなりません。

Declaration 宣言

func addFile(withPath path: String) -> String

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 IdentitiesFile 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 ファイルラッパー情報にアクセスする