mb.common_files(prefix)
Lists common files, optionally filtered by a prefix. Prefixes are useful when you want to list common files in a specific directory.
Parameters
prefix
:Optional[str]
Optionally, a prefix to filter on when listing common files.
Returns
List[str]
: The filepaths of common files.
Examples
Listing all common files
mb.common_files()
Listing all common files in the `lib`` directory
mb.common_files("lib/")