API:DirectoryStream::rewind

From Spherical
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.


The DirectoryStream::rewind() Core API method resets a directory stream to the beginning to be read again.

Usage
dirstream_obj.rewind();

API Information

Description

DirectoryStream::rewind() refreshes a directory stream and resets its DirectoryStream::position to 0. This allows you to read new or deleted items in a directory without having to construct a new DirectoryStream object. Note that this is not the same as manually setting DirectoryStream::position to 0 as that isn't guaranteed to reflect changes.

Parameters

This method has no parameters.

Return Value

This method doesn't return a meaningful value.

See Also