os.unlink(path, *, dir_fd=None)
Remove (delete) the file path. This function is semantically identical to remove()
; the unlink
name is its traditional Unix name. Please see the documentation for remove()
for further information.
New in version 3.3: The dir_fd parameter.
Please login to continue.