Closes the specified directory.

Syntax

#include <prio.h>

PRStatus PR_CloseDir(PRDir *dir);

Parameter

The function has the following parameter:

dir
A pointer to a PRDir structure representing the directory to be closed.

Returns

Description

When a PRDir object is no longer needed, it must be closed and freed with a call to PR_CloseDir call. Note that after a PR_CloseDir call, any PRDirEntry object returned by a previous PR_ReadDir call on the same PRDir object becomes invalid.

See Also

PR_OpenDir