The FilesystemIterator class
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
Introduction
The Filesystem iterator
Class synopsis
$directory, int $flags = FilesystemIterator::KEY_AS_PATHNAME | FilesystemIterator::CURRENT_AS_FILEINFO | FilesystemIterator::SKIP_DOTS)$mode = "r", bool $useIncludePath = false, ?resource $context = null): SplFileObjectPredefined Constants
FilesystemIterator::CURRENT_AS_PATHNAMEMakes FilesystemIterator::current() return the pathname.
FilesystemIterator::CURRENT_AS_FILEINFOMakes FilesystemIterator::current() return an SplFileInfo instance.
FilesystemIterator::CURRENT_AS_SELFMakes FilesystemIterator::current() return $this (the FilesystemIterator).
FilesystemIterator::CURRENT_MODE_MASKFilesystemIterator::KEY_AS_PATHNAMEMakes FilesystemIterator::key() return the pathname.
FilesystemIterator::KEY_AS_FILENAMEMakes FilesystemIterator::key() return the filename.
FilesystemIterator::FOLLOW_SYMLINKSMakes RecursiveDirectoryIterator::hasChildren() follow symlinks.
FilesystemIterator::KEY_MODE_MASKFilesystemIterator::NEW_CURRENT_AND_KEYSame as
FilesystemIterator::KEY_AS_FILENAME | FilesystemIterator::CURRENT_AS_FILEINFO.FilesystemIterator::OTHER_MODE_MASKMask used for FilesystemIterator::getFlags() and FilesystemIterator::setFlags().
FilesystemIterator::SKIP_DOTSSkips dot files (
.and..).FilesystemIterator::UNIX_PATHSMakes paths use Unix-style forward slash irrespective of system default. Note that the
paththat is passed to the constructor is not modified.
Table of Contents
- FilesystemIterator::__construct — Constructs a new filesystem iterator
- FilesystemIterator::current — The current file
- FilesystemIterator::getFlags — Get the handling flags
- FilesystemIterator::key — Retrieve the key for the current file
- FilesystemIterator::next — Move to the next file
- FilesystemIterator::rewind — Rewinds back to the beginning
- FilesystemIterator::setFlags — Sets handling flags