File "file_exists.php"
Full Path: /home/analogde/www/Python/Monsta-FTP-master/Essai FTP/file_exists.php
File size: 693 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
// Chemin vers le fichier image
$imagePath = '93522827_016_5bab.jpg';
//$imagePath = "https://analog-design.net/PATRICE/password.docx" ."<br>";
echo $_SERVER['DOCUMENT_ROOT'] ."<br>";
$imagePath = "/home/analogde/www/PATRICE/password.docx";
$imagePath = '/home/analogde/www/Document_workarea/patrice/Projet1/pipo.jpg';
$str_avant = "~/www/Document_workarea/patrice/Projet1";
echo " Avant " .$str_avant ."<br><br>";
$str_apres = str_replace("~", "/home/analogde/", $str_avant);
echo " Apres " .$str_apres ."<br><br>";
echo "<br><br>";
// Vérifier si le fichier existe
if (file_exists($str_apres))
{
echo $str_apres ." existe....";
}
else
{
echo "dfsfdgf";
}
?>