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
import glob | |
def get_files(scan_folder): | |
""" | |
Gets all the files deeper in from the provided scan_folder. | |
Does a recursive "search" using glob. | |
""" | |
if scan_folder[:-1] != '/': | |
scan_folder += '/' |