Creates a new file and returns an output stream for writing to it.
The file must not already exist.
By default files created are generally readable by everyone, but if you pass g_file_create_private in
flags
the file will be made readable only to the current user, to the level that is supported on the target filesystem.
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 g_io_error_cancelled
will be returned.
If a file or directory with this name already exists the g_io_error_exists error will be returned. Some file systems don't allow all file names, and may return an g_io_error_invalid_filename error, and if the name is to long g_io_error_filename_too_long will be returned. Other errors are possible too, and depend on what kind of filesystem the file is on.
Example: Create a file, sync:
public static int main (string[] args) {
// Create a file that can only be accessed by the current user:
File file = File.new_for_path ("my-test.txt");
try {
FileOutputStream os = file.create (FileCreateFlags.PRIVATE);
os.write ("My first line\n".data);
print ("Created.\n");
} catch (Error e) {
print ("Error: %s\n", e.message);
}
return 0;
}
valac --pkg gio-2.0 GLib.File.create.vala
this |
input File |
flags |
a set of FileCreateFlags |
cancellable |
optional Cancellable object, null to ignore |
a FileOutputStream for the newly created file, or null on error. Free the returned object with unref. |