from pathlib import Path aPath = Path('/path/to/file.csv') # Retourne True si le fichier existe aPath.exists()
Pour vérifier si un fichier ou un dossier est accessible en lecture :
from os import access, R_OK from os.path import isfile, isdir file = "/some/path/to/file" assert isfile(file) and access(file, R_OK), \ f"File {file} doesn't exist or isn't readable"