Spaces:
Runtime error
Runtime error
File size: 151 Bytes
530f5ca |
1 2 3 4 5 6 7 8 |
from os import path
from shutil import rmtree
def delete_file(path_: str):
if path.exists(path_):
rmtree(path=path_, ignore_errors=True)
|