Skip to content

Instantly share code, notes, and snippets.

@neotheicebird
Last active August 29, 2015 14:04
Show Gist options
  • Save neotheicebird/b6b22265708230a934a9 to your computer and use it in GitHub Desktop.
Save neotheicebird/b6b22265708230a934a9 to your computer and use it in GitHub Desktop.
find files of a specific extension from a folder
import glob
listing = glob.glob('C:/foo/bar/foo.log*')
for filename in listing:
# do stuff
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment