Initializer
init(forReadingFrom:)
Returns a file handle initialized for reading the file, device, or named socket at the specified URL.
指定されたURLでのファイル、デバイス、または名前付きソケットの読み込みのために初期化されるファイルハンドルを返します。
Declaration
宣言
convenience init(forReadingFrom url: URL
) throws
Parameters
パラメータ
url
The URL of the file, device, or named socket to access.
アクセスするファイル、デバイス、または名前付きソケットのURL。
error
If an error occurs, upon return contains an NSError
object that describes the problem. Pass NULL
if you do not want error information.
エラーが発生するならば、戻りでは、問題を記述するNSError
オブジェクトを含みます。NULL
をあなたがエラー情報を望まないならば渡してください。
Return Value
戻り値
The initialized file handle object or nil
if no file exists at url
.
初期化されたファイルハンドルオブジェクトまたは、ファイルがurl
で存在しないならばnil
。
Discussion
議論
The file pointer is set to the beginning of the file. You cannot write data to the returned file handle object. Use the readDataToEndOfFile()
or readData(ofLength:)
methods to read data from it.
ファイルポインタは、ファイルの始まりに設定されます。あなたは、返されるファイルハンドルオブジェクトにデータを書き出しできません。readDataToEndOfFile()
またはreadData(ofLength:)
メソッドを使ってデータをそれから読み込んでください。
When using this method to create a file handle object, the file handle owns its associated file descriptor and is responsible for closing it.
このメソッドを使ってファイルハンドルオブジェクトを作成する場合、ファイルハンドルは、それの結び付けられたファイル記述子を所有し、そしてそれを閉じることに責任を持ちます。
See Also
参照
Creating a File Handle
ファイルハンドルを作成する
init?(forReadingAtPath: String)
Returns a file handle initialized for reading the file, device, or named socket at the specified path.
指定されたパスでのファイル、デバイス、または名前付きソケットの読み込みのために初期化されるファイルハンドルを返します。
init?(forWritingAtPath: String)
Returns a file handle initialized for writing to the file, device, or named socket at the specified path.
指定されたパスでのファイル、デバイス、または名前付きソケットへの書き出しのために初期化されるファイルハンドルを返します。
init(forWritingTo: URL)
Returns a file handle initialized for writing to the file, device, or named socket at the specified URL.
指定されたURLでのファイル、デバイス、または名前付きソケットへの書き出しのために初期化されるファイルハンドルを返します。
init?(forUpdatingAtPath: String)
Returns a file handle initialized for reading and writing to the file, device, or named socket at the specified path.
指定されたパスでのファイル、デバイス、または名前付きソケットの読み書きのために初期化されるファイルハンドルを返します。
init(forUpdating: URL)
Returns a file handle initialized for reading and writing to the file, device, or named socket at the specified URL.
指定されたURLでのファイル、デバイス、または名前付きソケットの読み書きのために初期化されるファイルハンドルを返します。
Related Documentation
関連文書