File "file_exists02.php"
Full Path: /home/analogde/www/Python/Monsta-FTP-master/Essai FTP/file_exists02.php
File size: 330 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
$imagePath = '/home/analogde/www/Document_workarea/patrice/Projet1/pipo.jpg';
$imagePath = "/home/analogde/www/Document_workarea/patrice/Projet1/newfile.txt";
echo "<br><br>";
// Vérifier si le fichier existe
if (file_exists($imagePath))
{
echo $str_apres ." existe....";
}
else
{
echo "dfsfdgf";
}
?>