mongoc_stream_file_new_for_path()#
Synopsis#
mongoc_stream_t *
mongoc_stream_file_new_for_path (const char *path,
int flags,
int mode) BSON_GNUC_WARN_UNUSED_RESULT;
Parameters#
path
: The path of the target file.flags
: Flags to be passed toopen()
.mode
: An optional mode to be passed toopen()
when creating a file.
This function shall create a new mongoc_stream_file_t after opening the underlying file with open()
or the platform equivalent.
Returns#
NULL
on failure, otherwise a newly allocated mongoc_stream_file_t that should be freed with mongoc_stream_destroy() when no longer in use.
errno
is set upon failure.