Grounded.utils module
- Grounded.utils.find_files_regex(directory, regex_pattern)[source]
Searches for files matching a regular expression pattern using os.walk() and re.
- Args:
directory: The starting directory to search from. regex_pattern: The regular expression pattern to match against filenames.
- Returns:
A list of full paths to matching files.