Skip to content

Instantly share code, notes, and snippets.

@lesp
Created June 29, 2017 19:54
Show Gist options
  • Save lesp/3ac1a0418906b9acd5e9afbb7317aab4 to your computer and use it in GitHub Desktop.
Save lesp/3ac1a0418906b9acd5e9afbb7317aab4 to your computer and use it in GitHub Desktop.
Find mp3s, or anything else in a directory
import os
files = os.listdir("/directory/with/files/in")
print(list(filter(lambda x: 'mp3' in x, files)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment