[Github-comments] [geany/geany] Add 'File->Open Files Recursively' (#1163)
konsolebox
notifications at xxxxx
Thu Apr 20 11:50:26 UTC 2017
konsolebox commented on this pull request.
> @@ -1565,6 +1565,138 @@ void document_open_files(const GSList *filenames, gboolean readonly, GeanyFilety
}
+static GFileEnumerator *enumerate_children(const char *dir_path, GError **error)
+{
+ GFile *file = g_file_new_for_path(dir_path);
+
+ const gchar *attributes = G_FILE_ATTRIBUTE_STANDARD_TYPE "," G_FILE_ATTRIBUTE_STANDARD_NAME ","
+ G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME "," G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE;
+
+ GFileEnumerator *enumerator = g_file_enumerate_children(file, attributes,
What function, g_file_enumerate_children? It does exist in that version.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/1163#discussion_r112433287
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.geany.org/pipermail/github-comments/attachments/20170420/42fff040/attachment.html>
More information about the Github-comments
mailing list