get list of file name python code example
Example 1: os list all files in one dir
import glob
print(glob.glob("/home/adam/*.txt"))
Example 2: python get files in directory
from pathlib import Path
for txt_path in Path("/path/folder/directory").glob("*.txt"):
print(txt_path)