Spaces:
Build error
Build error
File size: 258 Bytes
3241ff4 |
1 2 3 4 5 6 7 8 9 10 11 |
import os
def get_filenames_from_dir(directory_path: str) -> list:
filenames = [
f
for f in os.listdir(directory_path)
if os.path.isfile(os.path.join(directory_path, f)) and f != ".DS_Store"
]
return filenames
|