Enumeration 列挙

NSFileWrapperReadingOptions

Reading options that can be set by the initWithURL:options:error: and readFromURL:options:error: methods. initWithURL:options:error:readFromURL:options:error:メソッドによって設定されることが可能である読み出しオプション。

Declaration 宣言

typedef enum NSFileWrapperReadingOptions : NSUInteger {
    ...
} NSFileWrapperReadingOptions;

Overview 概要

You can use the NSFileWrapperReadingImmediate and NSFileWrapperReadingWithoutMapping reading options together to take an exact snapshot of a file-system hierarchy that is safe from all errors (including the ones mentioned above) once reading has succeeded. If reading with both options succeeds, then subsequent invocations of the methods listed in the comment for the NSFileWrapperReadingImmediate reading option to the receiver and all its descendant file wrappers will never fail. However, note that reading with both options together is expensive in terms of both I/O and memory for large files, or directories containing large files, or even directories containing many small files. あなたは、NSFileWrapperReadingImmediateおよびNSFileWrapperReadingWithoutMapping読み出しオプションを一緒に使って、ファイルシステム階層の正確なスナップショットを取ることができます、それは一旦読み出しが成功したならば、全くエラーの心配がありません(上で言及するものを含めて)。両方のオプションを持つ読み出しが成功するならば、そのときNSFileWrapperReadingImmediate読み出しオプションのためのコメントで一覧にされるメソッドの、その後のレシーバおよび全てのそれの子孫ラッパーへの発動は、決して失敗しないでしょう。しかしながら、両方のオプションを一緒に持つ読み出しは、I/O及びメモリの両方の観点から巨大なファイル、または巨大なファイルを含むディレクトリ、または多くの小さなファイルを含むディレクトリに対してさえ高くつくことに注意してください。

Topics 話題

Constants 定数