How to search for a file with a picture
I have a folder with many files and I need to perform a delete with a specific file and this file has a pattern like
messages.bm.inc.php
messages.cn.inc.php
messages.en.inc.php
These files are dynamically generated, but the template exists
Before that, I usually delete my file using the code below and repeat it
$filename="messages.en.inc.php";
if (file_exists($filename)) {
unlink($filename);
}
Now that I have a more dynamic situation, I need to search through this file using patern and delete it, please suggest a way to do it, thanks
0
source to share