Tutorials

https://vvcestudio.com.br/en/tutorial/php/procuraarquivo/
menu

Find file in PHP

PHP code
x
<?php
if(file_exists("PATH/TO/FILE.txt")) {
echo "The file already exists";
}
else {
echo "could not find the file";
}
?>