PHP | DirectoryIterator getSize() Function Last Updated : 07 Mar, 2024 Summarize Comments Improve Suggest changes Share Like Article Like Report The DirectoryIterator::getSize() function is an inbuilt function in PHP which is used to returns the size of the current DirectoryIterator item. Syntax: int DirectoryIterator::getSize( void ) Parameters: This function does not accept any parameters. Return Value: This function returns the size of the file, in bytes. Below programs illustrate the DirectoryIterator::getSize() function in PHP: Program 1: php <?php // Create a directory Iterator $directory = new DirectoryIterator(dirname(__FILE__)); // Loop runs while directory is valid while ($directory->valid()) { // Check it is directory or not if ($directory->isDir()) { $file = $directory->current(); echo $file->getFilename() . " | Size: " . $directory->getSize() . "<br>"; } // Move to next element of directory $directory->next(); } ?> Output: . | Size: 4096 .. | Size: 12288 dashboard | Size: 4096 img | Size: 0 webalizer | Size: 0 xampp | Size: 0 Program 2: php <?php // Create a directory Iterator $directory = new DirectoryIterator(dirname(__FILE__)); // Loop runs for each element of directory foreach($directory as $dir) { $file = $directory->current(); echo $dir->key() . " => " . $file->getFilename() . " | Size: " . $dir->getSize() . "<br>"; } ?> Output: 0 => . | Size: 4096 1 => .. | Size: 12288 2 => applications.html | Size: 3607 3 => bitnami.css | Size: 177 4 => dashboard | Size: 4096 5 => favicon.ico | Size: 30894 6 => geeks.PNG | Size: 22358 7 => gfg.php | Size: 273 8 => img | Size: 0 9 => index.php | Size: 260 10 => webalizer | Size: 0 11 => xampp | Size: 0 Note: The output of this function depends on the content of server folder. Comment More infoAdvertise with us Next Article PHP | DirectoryIterator getPerms() Function J jit_t Follow Improve Article Tags : Web Technologies PHP PHP-function PHP-Iterators Similar Reads PHP | DirectoryIterator getATime() Function The DirectoryIterator::getATime() function is an inbuilt function in PHP which is used to get the last access time of the current DirectoryIterator item. Syntax: int DirectoryIterator::getATime( void ) Parameters: This function does not accept any parameters. Return Value: This function returns the 2 min read PHP | DirectoryIterator getCTime() Function The DirectoryIterator::getCTime() function is an inbuilt function in PHP which is used to get the inode change time of the current DirectoryIterator item. Syntax: int DirectoryIterator::getCTime( void ) Parameters: This function does not accept any parameters. Return Value: This function returns the 2 min read PHP | DirectoryIterator getMTime() Function The DirectoryIterator::getMTime() function is an inbuilt function in PHP which is used to returns the last modification time of the current DirectoryIterator item. Syntax: int DirectoryIterator::getMTime( void ) Parameters: This function does not accept any parameters. Return Value: This function re 2 min read PHP | DirectoryIterator getType() Function The DirectoryIterator::getType() function is an inbuilt function in PHP which is used to check the type of the current DirectoryIterator item. Syntax: string DirectoryIterator::getType( void ) Parameters: This function does not accept any parameters. Return Value: This function returns a string whic 2 min read PHP | DirectoryIterator getPerms() Function The DirectoryIterator::getPerms() function is an inbuilt function in PHP that is used to get the permissions of the current DirectoryIterator item. Syntax: int DirectoryIterator::getPerms( void ) Parameters: This function does not accept any parameters. Return Value: This function returns the file 2 min read PHP | DirectoryIterator isFile() Function The DirectoryIterator::isFile() function is an inbuilt function in PHP which is used to check the current DirectoryIterator item is a regular file or not. Syntax: bool DirectoryIterator::isFile( void ) Parameters: This function does not accept any parameters. Return Value: This function returns TRUE 1 min read Like