Method
GtkFileChooserget_files
since: 2.14
Declaration [src]
GSList*
gtk_file_chooser_get_files (
GtkFileChooser* chooser
)
Description [src]
Lists all the selected files and subfolders in the current folder of chooser
as GFile
. An internal function, see gtk_file_chooser_get_uris().
Available since: 2.14
Return value
Type: A list of None
A GSList
containing a GFile
for each selected file and subfolder in the
current folder. Free the returned list with g_slist_free(), and
the files with g_object_unref().
The caller of the method takes ownership of the returned data, and is responsible for freeing it. |