Initializer

init(contentsOfFile:options:)

Initializes a data object with the content of the file at a given path. あるデータオブジェクトをある与えられたパスでのファイルの内容で初期化します。

Declaration 宣言

init(contentsOfFile path: String, 
options readOptionsMask: NSData.ReadingOptions = []) throws

Parameters パラメータ

path

The absolute path of the file from which to read data. それからデータ読み出すことになるファイルの絶対パス。

mask

A mask that specifies options for reading the data. Constant components are described in NSData.ReadingOptions. データ読み出しに対するオプションを指定するあるマスク。定数構成要素それらは、NSData.ReadingOptionsにおいて記述されます。

errorPtr

If an error occurs, upon return contains an NSError object that describes the problem. エラーが発生するならば、戻りでは、問題を記述するNSErrorオブジェクトを含みます。

Return Value 戻り値

A data object initialized by reading into it the data from the file specified by path. pathによって指定されるファイルからのデータをそれへと読み出すことによって初期化されるデータオブジェクト。

Discussion 議論

See Also 参照

Reading Data from a File ファイルからデータを読み出す

Related Documentation 関連文書