verificar se arquivo existe python

Solutions on MaxInterview for verificar se arquivo existe python by the best coders in the world

showing results for - "verificar se arquivo existe python"
Alexander
01 Jun 2017
1# Você pode usar exists:
2
3import os.path
4os.path.exists('nome.ext')
5
6# Mas que também vai retornar True para diretórios, se você quer ter certeza de que é um arquivo realmente use isfile:
7
8import os.path
9os.path.isfile('nome.ext')