John K.
0
Q:

filter directory in python

#import fnmatch and os
import os, fnmatch

#path to use
path = "/kite/run"

#filter for all the python files
files = fnmatch.filter(os.listdir(path), "*.py")

#display the python files
print(files)
0

New to Communities?

Join the community