Created
June 2, 2013 20:23
-
-
Save techtonik/5694830 to your computer and use it in GitHub Desktop.
Python - case-insensitive glob
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# snippet is placed into public domain by | |
# anatoly techtonik <[email protected]> | |
# http://stackoverflow.com/questions/8151300/ignore-case-in-glob-on-linux | |
import fnmatch | |
import os | |
import re | |
def findfiles(which, where='.'): | |
'''Returns list of filenames from `where` path matched by 'which' | |
shell pattern. Matching is case-insensitive.''' | |
# TODO: recursive param with walk() filtering | |
rule = re.compile(fnmatch.translate(which), re.IGNORECASE) | |
return [name for name in os.listdir(where) if rule.match(name)] | |
# findfiles('*.ogg') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks a lot, it is useful.