Uzyskaj listę wszystkich plików w folderze i podfolderach Python
for path, subdirs, files in os.walk(root):
for name in files:
print os.path.join(path, name)
NA RACE