The Directory class

Introduction

Instances of Directory are created by calling the dir function, not by the new operator.

Class synopsis

Directory
/* Properties */
public readonly string $path;
public readonly resource $handle;
/* Methods */
public void close()
public stringfalse read()
public void rewind()

Properties

path

The directory that was opened.

handle

Can be used with other directory functions such as readdir, rewinddir and closedir.

Changelog

Version Description
8.1.0 The path and handle properties are now readonly.
Table of Contents