Shortcuts

mmengine.fileio.join_path

mmengine.fileio.join_path(filepath, *filepaths, backend_args=None)[source]

Concatenate all file paths.

Join one or more filepath components intelligently. The return value is the concatenation of filepath and any members of *filepaths.

Parameters
  • filepath (str or Path) – Path to be concatenated.

  • *filepaths (str or Path) – Other paths to be concatenated.

  • backend_args (dict, optional) – Arguments to instantiate the corresponding backend. Defaults to None.

  • filepaths (Union[str, pathlib.Path]) –

Returns

The result of concatenation.

Return type

str

Examples

>>> filepath1 = '/path/of/dir1'
>>> filepath2 = 'dir2'
>>> filepath3 = 'path/of/file'
>>> join_path(filepath1, filepath2, filepath3)
'/path/of/dir/dir2/path/of/file'
Read the Docs v: v0.4.0
Versions
latest
stable
v0.5.0
v0.4.0
v0.3.0
v0.2.0
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.