find files

This commit is contained in:
rasbt 2015-01-01 20:14:07 -05:00
parent 7d879b4e33
commit 75c8f46f4a

View File

@ -0,0 +1,18 @@
# Sebastian Raschka 2014
#
# A Python function to find files in a directory based on a substring search.
import os
def find_files(substring, path):
results = []
for f in os.listdir(path):
if substring in f:
results.append(os.path.join(path, f))
return results
# E.g.
# find_files('Untitled', '/Users/sebastian/Desktop/')
# returns
# ['/Users/sebastian/Desktop/Untitled0.ipynb']