Using PHP file_exists() to Check File and Directory Existence
This article explains the PHP file_exists() function, its syntax, parameters, return values, provides example code for checking both files and directories, and lists important usage notes and best practices for backend developers.
In PHP programming, checking whether a file or directory exists is a common task, and the file_exists() function provides a simple way to perform this check.
Syntax: bool file_exists ( string $filename ) Parameter: $filename – the path to the file or directory to be checked.
Return value: Returns true if the file or directory exists, otherwise false.
Example: The following code demonstrates checking a file and a directory using file_exists() together with is_dir():
<?php
// Check if a file exists
$file = 'example.txt';
if (file_exists($file)) {
echo "File exists.";
} else {
echo "File does not exist.";
}
// Check if a directory exists
$dir = 'example_dir';
if (file_exists($dir) && is_dir($dir)) {
echo "Directory exists.";
} else {
echo "Directory does not exist.";
}
?>The example first defines a file path variable $file and uses file_exists() to determine its existence, outputting an appropriate message. It then defines a directory path variable $dir and checks both existence and that it is a directory using file_exists() and is_dir().
Notes:
The function can check both local and remote files by providing a URL.
It returns true for both files and directories.
It only reports existence and does not consider accessibility permissions.
It is advisable to use is_readable() or is_writable() before operating on the file to avoid permission issues.
Conclusion: file_exists() is an essential PHP function for verifying the presence of files or directories, enabling developers to safely handle file operations in backend applications.
Signed-in readers can open the original source through BestHub's protected redirect.
This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactand we will review it promptly.
php Courses
php中文网's platform for the latest courses and technical articles, helping PHP learners advance quickly.
How this landed with the community
Was this worth your time?
0 Comments
Thoughtful readers leave field notes, pushback, and hard-won operational detail here.
