UNISTDX_FS_MKDIRS
mkdirs(const path & root, const path & relative_path, file_mode m = 0755) -> void

Make directories recursively.

bad_call

root
path, relative to which directories are created

relative_path
path, components of which are created

m
file mode of directories to be created

Create directories relative to root assuming that the root exists.

mkdirs(path dir, file_mode m = 0755, path::size_type offset = 1) -> void

Make directories recursively.

bad_call

dir
path, components of which are created

m
file mode of directories to be created

offset
character offset in path name to start creating directories from

Create directories assuming all path components that come before offset characters from the beginning of dir exist.