how to get a list of files in a folder code example
Example 1: list files in directory python
import os
print(os.listdir('/path/to/folder/to/list'))
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))]
Example 3: number all files in a folder
ls -v | cat -n | while read n f; do mv -n "$f" "$n.ext"; done