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 addRegularFile(withContents:preferredFilename:)
method.
このメソッドを使って、既存のファイルラッパーをディレクトリファイルラッパーの子として加えてください。ファイルラッパーが優先ファイル名を持たないならば、preferredFilename
を設定してやっつけてください、addFileWrapper(_:)
を呼び出す前に。新しいファイルラッパーを作成してそれをディレクトリに加えるには、addRegularFile(withContents: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
ファイルラッパー情報にアクセスする
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
関連文書