Instance Property
インスタンスプロパティ
fileWrappers
The file wrappers contained by a directory file wrapper.
ファイルラッパーは、ディレクトリファイルラッパーによって含まれます。
Discussion
議論
The dictionary contains entries whose values are the file wrappers and whose keys are the unique filenames that have been assigned to each one. See Accessing File Wrapper Identities in File System Programming Guide for more information about the file-wrapper list structure.
辞書は、それの値がファイルラッパーである、そしてそれのキーが固有なファイル名である、各自割り当てられる、登録項目を含みます。ファイルラッパーリスト構造についてのさらなる情報としてAccessing File Wrapper IdentitiesをFile System Programming Guideで見てください。
This property may contain nil
if the user modifies the directory after you call read(from:options:)
or init(url:options:)
but before FileWrapper
has read the contents of the directory. Use the immediate
reading option to reduce the likelihood of that problem.
このプロパティはnil
を含むかもしれません、あなたがread(from:options:)
またはinit(url:options:)
を呼び出した後にしかしFileWrapper
がディレクトリの内容を読み出し終える前に、ユーザがディレクトリを修正するならば。immediate
読み出しオプションを使って、その問題の可能性を減少させてください。
Special Considerations
特別な注意事項
This property raises NSInternalInconsistencyException
if the file wrapper object 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 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
関連文書