fn list_files_recursive(
path: &str,
regex: &Option<Regex>,
all_files: bool,
full_names: bool,
) -> Result<Vec<Option<String>>, RError>Expand description
Recursive directory listing using walkdir (when available) or std::fs fallback.