nw::lyt::ARCOpenDir Function
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
);
| ARCOpenDir ( ARCHandle *, const wchar_t *, ARCDir * ) | Opens a directory. |
| ARCOpenDir ( ARCHandle *, s32, ARCDir * ) | Opens a directory. |
| ARCOpenDir ( ARCHandle *, ARCDirEntry *, ARCDir * ) | Opens a directory. |
If a relative path is specified in dirName, it is taken as a relative path from the current directory of the ARCHandle structure.
Opens the directory given by the entry number and initializes the specified ARCDir structure.
The ARCHandle structure must be initialized beforehand using ARCInitHandle.
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