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)
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.