Could you help me with this:
<?php
$archivo="datos.txt";
$camino="datos/";
if(file_exists($camino.$archivo))
{
print " <p> Si existe el archivo $archivo en la carpeta $camino. </p>";
}
else
{
print " <p> No existe el archivo $archivo en la carpeta $camino. </p>";
}
?>
is a validation of the existence of a file but only goes through the else I do not understand what is wrong, why do you say it does not exist?