how to get a list of files in a folder in python with pathlib

47

from os import listdir
file_list = listdir(folder_path)

Comments

Submit
0 Comments