Using PHP file_exists() to Check File and Directory Existence

This article explains PHP's file_exists() function, detailing its syntax, parameters, return values, usage examples for checking both files and directories, and important considerations such as remote checks and permission handling in web applications.

php Courses
php Courses
php Courses
Using PHP file_exists() to Check File and Directory Existence

In PHP programming, the file_exists() function is used to determine whether a specified file or directory exists.

Syntax: bool file_exists ( string $filename ) Parameter: $filename: the path of the file or directory to check.

Return value: Returns true if the file or directory exists, otherwise false.

Example: The following code demonstrates checking a file and a directory.

<?php
// Check if file exists
$file = 'example.txt';
if (file_exists($file)) {
    echo "文件存在。";
} else {
    echo "文件不存在。";
}

// Check if directory exists
$dir = 'example_dir';
if (file_exists($dir) && is_dir($dir)) {
    echo "目录存在。";
} else {
    echo "目录不存在。";
}
?>

The example first defines a file path variable $file and uses file_exists() to verify its existence, outputting a message accordingly. It then defines a directory path variable $dir and checks both existence and that it is a directory using file_exists() together with is_dir().

Notes:

The function can check local files/directories as well as remote URLs.

It does not differentiate between files and directories; a directory will also return true.

It only reports existence and does not impose access restrictions.

It is advisable to use is_readable() or is_writable() before accessing the file to avoid permission errors.

Summary: file_exists() is an essential PHP function for verifying the presence of files or directories, returning a boolean result that can be combined with other file‑handling functions to build robust file‑system logic.

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

Backendphp-functionsfile_existsfile check
php Courses
Written by

php Courses

php中文网's platform for the latest courses and technical articles, helping PHP learners advance quickly.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.