Skip to content

Instantly share code, notes, and snippets.

@mcav
Forked from CarlQLange/gist:1398137
Created November 27, 2011 21:13
Show Gist options
  • Save mcav/1398162 to your computer and use it in GitHub Desktop.
Save mcav/1398162 to your computer and use it in GitHub Desktop.
Open all mp3s in all subfolders of ./muzak
import os
for subdir, dirs, files in os.walk('./muzak'):
for file in files:
if file.endswith('.mp3'):
os.system('open ".%s/%s"' % (subdir[1:], file))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment