The FilesystemIterator class
Introduction
The Filesystem iterator
Class synopsis
/* Constants */
/* Methods */
__construct
( string $path
[, int $flags = FilesystemIterator::KEY_AS_PATHNAME | FilesystemIterator::CURRENT_AS_FILEINFO | FilesystemIterator::SKIP_DOTS
] )
/* Inherited methods */
}Predefined Constants
- FilesystemIterator::CURRENT_AS_PATHNAME
-
Makes FilesystemIterator::current return the pathname.
- FilesystemIterator::CURRENT_AS_FILEINFO
-
Makes FilesystemIterator::current return an SplFileInfo instance.
- FilesystemIterator::CURRENT_AS_SELF
-
Makes FilesystemIterator::current return $this (the FilesystemIterator).
- FilesystemIterator::CURRENT_MODE_MASK
- FilesystemIterator::KEY_AS_PATHNAME
-
Makes FilesystemIterator::key return the pathname.
- FilesystemIterator::KEY_AS_FILENAME
-
Makes FilesystemIterator::key return the filename.
- FilesystemIterator::FOLLOW_SYMLINKS
-
Makes RecursiveDirectoryIterator::hasChildren follow symlinks.
- FilesystemIterator::KEY_MODE_MASK
-
Masks FilesystemIterator::key
- FilesystemIterator::NEW_CURRENT_AND_KEY
-
Same as FilesystemIterator::KEY_AS_FILENAME | FilesystemIterator::CURRENT_AS_FILEINFO.
- FilesystemIterator::SKIP_DOTS
-
Skips dot files (. and ..).
- FilesystemIterator::UNIX_PATHS
-
Makes paths use Unix-style forward slash irrespective of system default.
Changelog
| Version | Description |
|---|---|
| 5.3.1 | Added FilesystemIterator::FOLLOW_SYMLINKS |
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




