how to get list of specific files in a folder code example
Example 1: python get list of files in directory
from os import listdir
file_list = listdir(folder_path)
Example 2: get list of files in directory python
import os
path = '/folder1/folder2/'
files = os.listdir(path)