fileCloseDir

Closes a directory handle and releases its resources. Takes a directory handle. Returns nothing (void).

File IO

Parameters & Returns

Parameters

dirHandle Int

Returns

Void

Quick Summary

Closes a directory handle and releases its resources. Takes a directory handle. Returns nothing (void).

Technical Exegesis...

Closes the directory handle and releases the associated resources. The handle becomes invalid after this call.

Always close directory handles when finished to free memory. Does nothing if the handle is invalid.

Example

Example.bam
; No example implemented yet