Método para verificar se existe determinado arquivo
public bool _existeArquivo(string arquivo)
{
bool bRetorno = false;
vars h = new vars();
if (!String.IsNullOrEmpty(arquivo))
{
FileInfo a = new FileInfo(arquivo);
if (a.Exists)
{
bRetorno = true;
}
}
return bRetorno;
}