nw::lyt::ARCOpenDir Function

Syntax

bool ARCOpenDir(
     ARCHandle * handle,
     const wchar_t * dirName,
     ARCDir * dir
);
bool ARCOpenDir(
     ARCHandle * handle,
     s32 entrynum,
     ARCDir * dir
);
NW_INLINE bool ARCOpenDir(
     ARCHandle * handle,
     ARCDirEntry * dirent,
     ARCDir * dir
);

List of Overloaded Member Functions

ARCOpenDir ( ARCHandle *, const wchar_t *, ARCDir * ) Opens a directory.
ARCOpenDir ( ARCHandle *, s32, ARCDir * ) Opens a directory.
ARCOpenDir ( ARCHandle *, ARCDirEntry *, ARCDir * ) Opens a directory.

Description of ARCOpenDir ( ARCHandle *, const wchar_t *, ARCDir * )

If a relative path is specified in dirName, it is taken as a relative path from the current directory of the ARCHandle structure.

Description of ARCOpenDir ( ARCHandle *, s32, ARCDir * )

Opens the directory given by the entry number and initializes the specified ARCDir structure.

The ARCHandle structure must be initialized beforehand using ARCInitHandle.

Description of ARCOpenDir ( ARCHandle *, ARCDirEntry *, ARCDir * )

Opens the directory represented by the directory entry structure and initializes the specified ARCDir structure.

The entry indicated by the directory entry structure must represent a directory.

The directory structure must be initialized beforehand using ARCReadDir().

The ARCHandle structure must be initialized beforehand using ARCInitHandle.


CONFIDENTIAL