Skip to content

Instantly share code, notes, and snippets.

View mcav's full-sized avatar

Marcus Cavanaugh mcav

View GitHub Profile
@mcav
mcav / gist:1398162
Created November 27, 2011 21:13 — forked from CarlQLange/gist:1398137
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))