TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/alex-ber/AlexBerUtils/llms.txt
Use this file to discover all available pages before exploring further.
files module provides utilities for working with the filesystem.
join_files
Concatenates a set of numbered partial files into a single output file. The function scans the same directory as the output file for files whose name follows the pattern<stem>_*<suffix> and appends each one to the output file in glob order.
Path to the output file. This path is also used as the glob pattern base: all files in the same directory whose names match
<stem>_*<suffix> are read and written into this file.None. The output file is written (or overwritten) in place.
