Type Method 型メソッド

dataWithContentsOfFile:

Creates a data object by reading every byte from the file at a given path. データオブジェクトを、ある与えられたパスでのファイルからあらゆるバイトを読み出すことによって作成します。

Declaration 宣言

+ (instancetype)dataWithContentsOfFile:(NSString *)path;

Parameters パラメータ

path

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

Discussion 議論

This method returns nil if the data object could not be created. If you need to know the reason for failure, use dataWithContentsOfFile:options:error:. このメソッドはnilを返します、もしデータオブジェクトが作成されることができなかったならば。あなたが失敗の理由を知る必要があるならば、dataWithContentsOfFile:options:error:を使ってください。

This method is equivalent to calling dataWithContentsOfFile:options:error: and passing no options. このメソッドは、dataWithContentsOfFile:options:error:を呼び出してオプションを渡さない事と等しいです。

A sample using this method can be found in Working With Binary Data. このメソッドを使う見本は、Working With Binary Dataで見つけることができます。

See Also 参照

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