Having the following base code for walking a directory I would like to fill a GtkTreeView with the directory and files information to the user:
import os
for (path, dirs, files) in os.walk("/etc"):
print path, dirs, files
C code is also welcome since it is easy to translate to pygtk.