File.replaceContentsAsync

void replaceContentsAsync(ubyte[] contents, string etag, bool makeBackup, gio.types.FileCreateFlags flags, gio.cancellable.Cancellable cancellable = null, gio.types.AsyncReadyCallback callback = null)

Starts an asynchronous replacement of file with the given contents of length bytes. etag will replace the document's current entity tag.

When this operation has completed, callback will be called with user_user data, and the operation can be finalized with [gio.file.File.replaceContentsFinish].

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.types.IOErrorEnum.Cancelled] will be returned.

If make_backup is true, this function will attempt to make a backup of file.

Note that no copy of contents will be made, so it must stay valid until callback is called. See [gio.file.File.replaceContentsBytesAsync] for a #GBytes version that will automatically hold a reference to the contents (without copying) for the duration of the call.

Parameters

contentsstring of contents to replace the file with
etaga new entity tag for the file, or null
makeBackuptrue if a backup should be created
flagsa set of #GFileCreateFlags
cancellableoptional #GCancellable object, null to ignore
callbacka #GAsyncReadyCallback to call when the request is satisfied