fsdir:2011-10-01:v0.3:Python2.6 This is the first version of a simple, but handy module, this module do a recursive walk returning file and folder information. This module is writen in C so take half of the time then similar implementation in pure python. The version 0.2 add the files permissions, and return a list of dicts, instead of a list of list. Easier to work with. PS:This module dont calculate the size in disk not the size of the file. Example: >>>import fsdir >>>fsdir.go(".") [{'permGroup': 'rwx', 'permOwner': 'rwx', 'permOthers': 'rwx', 'Owner': 'rgomes', 'Path': '.', 'Type': 'D', 'Size': 0}, {'permGroup': 'rwx', 'permOwner': 'rwx', 'permOthers': 'rwx', 'Owner': 'rgomes', 'Path': './fsdir.so', 'Type': 'F', 'Size': 28}] So fsdir.go("xx"), return a list of dict, Here: list[x]["permGroup"]=Permission to the Group list[x]["permOwner"]=Permission to the Owner //Note: Permission always return 3 char string, rwx if the premession is active or - if is not for example a file just with read permission will be "r--" list[x]["permOthers"]=Permission to the Others list[x]["Owner"]=Username of the owner list[x]["Path"]=Full Path to the file/dir list[x]["Type"]=F|D (F=File, D=Directory) list[x]["Size"]=Size in Kilobytes