hexlib/hexlib/files.py
2019-11-20 16:53:29 -05:00

9 lines
141 B
Python

import os
def ftw(path):
for cur, _dirs, files in os.walk(path):
for file in files:
yield os.path.join(cur, file)