#+Title: dir2org #+AUTHOR: Sam Flint #+EMAIL: swflint@flintfam.org #+DATE: \today #+INFOJS_OPT: view:info toc:nil path:http://flintfam.org/org-info.js #+OPTIONS: toc:3 H:5 ':t *:t #+PROPERTY: noweb tangle #+LATEX_HEADER: \usepackage[color]{showkeys} * Imports #+Name: Imports #+BEGIN_SRC python from os import listdir, getcwd from os.path import isfile, isdir, islink #+END_SRC * Generate tree #+Name: GenTree #+BEGIN_SRC python def gen_tree(directory): for name in listdir(directory) #+END_SRC