Skip to navigation
How to get all files from folder with subfolder with python
07.12.13
import os for root, dirs, files in os.walk('./'): for name in files: filename = os.path.join(root, name) print filename http://love-python.blogspot.com/2008/05/list-of-files-directories-in-python.html
Reply
Anonymous
Information Epoch 1736546181
When in doubt, use brute force.
Home
Notebook
Contact us