PHP: Tell me if the file exists?
6 answers
<?php
$filename = '/path/to/foo.txt';
if (file_exists($filename)) {
echo "The file $filename exists";
} else {
echo "The file $filename does not exist";
}
?>
Source: http://in.php.net/file_exists
+1
a source to share