In Python on a GNU/Linux system, what\'s the fastest way to recursively scan a directory for all .MOV or .AVI files, and to store them in a list? <
.MOV
.AVI
Example for a list of files in current directory. You can expand this for specific paths.
import glob movlist = glob.glob('*.mov')