Function
Ideg_file_find_async
Declaration
void
ide_g_file_find_async (
GFile* file,
const gchar* pattern,
GCancellable* cancellable,
GAsyncReadyCallback callback,
gpointer user_data
)
Description
Searches descendants of file
for files matching pattern
.
You may only match on the filename, not the directory.
Parameters
file
-
Type:
GFile
A
IdeGlib
.The data is owned by the caller of the function. pattern
-
Type:
const gchar*
The glob pattern to search for using GPatternSpec.
The data is owned by the caller of the function. The value is a NUL terminated UTF-8 string. cancellable
-
Type:
GCancellable
A
GCancellable
orNULL
.The argument can be NULL
.The data is owned by the caller of the function. callback
-
Type:
GAsyncReadyCallback
A callback to execute upon completion.
The argument can be NULL
. user_data
-
Type:
gpointer
Closure data for
callback
.The argument can be NULL
.The data is owned by the caller of the function.