get list of files in a folder python code example
Example 1: get list of folders in directory python
import os
my_list = os.listdir('My_directory')
Example 2: python list all files in directory
from os import listdir
from os.path import isfile, join
onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]