get_all_files_recursive

ssapy.io.get_all_files_recursive(path_name='/home/runner/work/SSAPy/SSAPy/docs/source')[source][source]

Recursively retrieve all file paths from a directory and its subdirectories.

This function walks through the directory tree starting from the specified path and collects the full paths of all files found. If no path is provided, it defaults to the current working directory.

Parameters:

path_name (str, optional) – The root directory to start the search. Defaults to the current working directory.

Returns:

A list of full file paths for all files found in the directory

tree starting at path_name.

Return type:

list