fs/unlink
This commit is contained in:
parent
3393f09907
commit
0a9404fb2f
1 changed files with 2 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
|||
|
||||
import os
|
||||
import shutil
|
||||
from pathlib import Path
|
||||
|
||||
from rwx import ps
|
||||
|
||||
|
@ -69,7 +70,7 @@ def wipe(path: str) -> None:
|
|||
try:
|
||||
shutil.rmtree(path)
|
||||
except NotADirectoryError:
|
||||
os.remove(path)
|
||||
Path(path).unlink(missing_ok=True)
|
||||
except FileNotFoundError:
|
||||
pass
|
||||
|
||||
|
|
Loading…
Reference in a new issue