gFileOutputStreamQueryInfo(object, attributes, cancellable = NULL, .errwarn = TRUE)
gFileOutputStreamQueryInfoAsync(object, attributes, io.priority = 0, cancellable = NULL, callback, user.data = NULL)
gFileOutputStreamQueryInfoFinish(object, result, .errwarn = TRUE)
gFileOutputStreamGetEtag(object)
GObject +----GOutputStream +----GFileOutputStream
GSeekable
.GSeekable
, which allows the output
stream to jump to arbitrary positions in the file and to truncate
the file, provided the filesystem of the file supports these
operations. To find the position of a file output stream, use gSeekableTell
.
To find out if a file output stream supports seeking, use
gSeekableCanSeek
.To position a file output stream, use
gSeekableSeek
. To find out if a file output stream supports
truncating, use gSeekableCanTruncate
. To truncate a file output
stream, use gSeekableTruncate
.