File size: 141 Bytes
ab250f8 |
1 2 3 4 5 6 7 8 9 10 |
import os
"""
Checks if the given path is valid and file exists
"""
def path_is_valid(path: str) -> bool:
return os.path.exists(path)
|
ab250f8 |
1 2 3 4 5 6 7 8 9 10 |
import os
"""
Checks if the given path is valid and file exists
"""
def path_is_valid(path: str) -> bool:
return os.path.exists(path)
|