6 local files = os.listdir(dir)
9 local fullpath = dir + "/" + path
10 local st = os.stat(fullpath)
11 cb(st.is_dir ? fullpath : dir, path, fullpath, st.is_dir, st)
22 walk(".", function(dir, path, fullpath, isdir, stat)
26 println("dir %s:".fmt(dir.quote()))