File size: 259 Bytes
61d733d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import os
__all__ = ['get_files']
def get_files(path):
all_files = []
for root, dirs, files in os.walk(path):
for file in files:
file_path = os.path.join(root, file)
all_files.append(file_path)
return all_files
|