Reputation: 531
$filename = '/www/test1/*.pdf';
if (file_exists($filename))
{
echo "The file $filename exists";
}
else
{
echo "The file $filename does not exist";
}
I used above code but it checks for *.pdf file but not for all files belongs to .pdf extension
Upvotes: 4
Views: 4767
Reputation: 212422
$filename = '/www/test1/*.pdf';
if (count(glob($filename)) > 0) {
echo "The file $filename exists";
} else {
echo "The file $filename does not exist";
}
Upvotes: 11