Shortcuts

mmengine.fileio.remove

mmengine.fileio.remove(filepath, backend_args=None)[source]

Remove a file.

Parameters:
  • filepath (str, Path) – Path to be removed.

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

Raises:
  • FileNotFoundError – If filepath does not exist, an FileNotFoundError will be raised.

  • IsADirectoryError – If filepath is a directory, an IsADirectoryError will be raised.

Return type:

None

Examples

>>> filepath = '/path/of/file'
>>> remove(filepath)