268008 items (1143 unread) in 24 feeds
CNN
(18 unread)
MSNBC
(35 unread)
PHP
(48 unread)
Deals
(1034 unread)
Web Development
(6 unread)
CNN Money
(2 unread)
Gio = imports.gi.Gio;
Gtk = imports.gi.Gtk;
var f = Gio.file_new_for_path('/home/');
f.enumerate_children_async (
"*",
Gio.FileQueryInfoFlags.NONE,
GLib.PRIORITY_DEFAULT,
null,
function(o,ar) {
// listing completed..
var fe = f.enumerate_children_finish(ar);
var ch = false;
while (ch = fe.next_file(null)) {
Seed.print(ch.get_name());
}
Seed.quit();
},
null);
Gtk.main();