Gio.InputStream.prototype.read_bytes

function read_bytes(count: Number(gsize), cancellable: Gio.Cancellable): ByteArray {
    // Gjs wrapper for g_input_stream_read_bytes()
}
  

Like Gio.InputStream.prototype.read, this tries to read count bytes from the stream in a blocking fashion. However, rather than reading into a user-supplied buffer, this will create a new GLib.Bytes containing the data that was read. This may be easier to use from language bindings.

If count is zero, returns a zero-length GLib.Bytes and does nothing. A value of count larger than %G_MAXSSIZE will cause a Gio.IOErrorEnum.invalid_argument error.

On success, a new GLib.Bytes is returned. It is not an error if the size of this object is not the same as the requested size, as it can happen e.g. near the end of a file. A zero-length GLib.Bytes is returned on end of file (or if count is zero), but never otherwise.

If cancellable is not null, then the operation can be cancelled by triggering the cancellable object from another thread. If the operation was cancelled, the error Gio.IOErrorEnum.cancelled will be returned. If an operation was partially finished when the operation was cancelled the partial result will be returned, without an error.

On error null is returned and @error is set accordingly.

count

maximum number of bytes that will be read from the stream. Common values include 4096 and 8192.

cancellable

optional Gio.Cancellable object, null to ignore.

Returns

a new GLib.Bytes, or null on error