mirror of
https://github.com/simon987/hexlib.git
synced 2025-04-20 18:26:43 +00:00
9 lines
141 B
Python
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)
|
|
|