nw::lyt::ARCChangeDir Function

Syntax

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

List of Overloaded Member Functions

ARCChangeDir ( ARCHandle *, const wchar_t * ) Changes the current directory of the archive.
ARCChangeDir ( ARCHandle *, s32 ) Changes the current directory of the archive.
ARCChangeDir ( ARCHandle *, ARCDir * ) Changes the current directory of the archive.
ARCChangeDir ( ARCHandle *, ARCDirEntry * ) Changes the current directory of the archive.

Description of ARCChangeDir ( ARCHandle *, const wchar_t * )

ARCChangeDir changes the current directory of the archive.

The ARCHandle structure must be initialized beforehand using ARCInitHandle.

Description of ARCChangeDir ( ARCHandle *, s32 )

Changes the current directory of the archive to that specified by the entry number.

The entry specified by the entry number must represent a directory.

The ARCHandle structure must be initialized beforehand using ARCInitHandle.

Description of ARCChangeDir ( ARCHandle *, ARCDir * )

Changes the current directory of the archive to the directory indicated by the directory structure.

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

The ARCHandle structure must be initialized beforehand using ARCInitHandle.

Description of ARCChangeDir ( ARCHandle *, ARCDirEntry * )

Changes the current directory of the archive to the directory indicated by the directory entry 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