get_files_recursively

Summary

get_files_recursively(directory)

This function takes a directory, and adds all of its files to an array, then traverses through any subdirectories and adds those files too. Once complete, it returns that array.

Parameters:

directory (Path) – A directory to search.

Importing

from cs_board_tools.utilities.filesystem import get_files_recursively