API:DirectoryStream: Difference between revisions

From Spherical
Jump to navigation Jump to search
More organization - split function and class info
Add DirectoryStream::dispose()
 
Line 48: Line 48:


<tt>
<tt>
* [[API:DirectoryStream::dispose|DirectoryStream::dispose()]]
* [[API:DirectoryStream::next|DirectoryStream::next()]]
* [[API:DirectoryStream::next|DirectoryStream::next()]]
* [[API:DirectoryStream::rewind|DirectoryStream::rewind()]]
* [[API:DirectoryStream::rewind|DirectoryStream::rewind()]]

Latest revision as of 03:26, 14 August 2017


The new DirectoryStream() constructor initializes an object that allows you to enumerate the contents of a directory.

Usage
dirstream_obj = new DirectoryStream(dir_name);

API Information

Description

new DirectoryStream() constructs a Directory Stream object, which allows you to enumerate the contents of a directory. Directory streams only provide filenames; you must use a FileStream to access the contents of a file.

Note: The DirectoryStream class implements the JavaScript iterator protocol, which means you can use them in from() queries and for-of loops.

Parameters

dir_name Path to the directory to be enumerated. Relative to the game manifest unless a SphereFS prefix is included.

Return Value

A newly constructed DirectoryStream object pointing at dir_name.

Class Information

Properties

Methods

See Also