WRITELOOP
Posts
Shorts
Bibliographic Notes
Flashcards
Glossary
Technology Radar
Recommendations
Tags
NEED TO RECURSIVELY FIND FILES IN PYTHON?
2017 March 18
Use the pathlib module instead of os. from pathlib import Path Path(’.’).glob(’**/img*.jpg')
TAGS
PYTHON
CHEATSHEET