How to Count Number of Files in a Directory in PHP?

By Hardik Savani November 5, 2023 Category : PHP

In PHP, you are work on php and you want to need display count number of files in specific folder then you do, glob() through you count number of file are there in specified folder. now in following example you can see "/var/www/test" in this folder, count how many files are there in that folder. glob function take a two argument first one for directory or folder path and second argument for filter. Filter means if you pass '*' then it will count all type of file, i mean all extension, but if you need to count just text file then you can put like '*.txt'.

That't it, if in your directory, function does not find any file then it will always return "false". you can check following example and try that...

Example 1:

index.php

<?php

$folderPath = '/folderName';

$file = glob($folderPath . '*');

$countFile = 0;

if ($file != false){

$countFile = count($file);

}

print_r($countFile);

?>

Output:

10

I hope it can help you...

Tags :
Shares