Directory();
Directory(
const wchar_t * pathName
);
Directory(
const char * pathName
);
| Directory ( ) | Constructor. |
| Directory ( const wchar_t * ) | A constructor that opens the specified directory. |
| Directory ( const char * ) | A constructor that opens the specified directory. |
In the overloaded version without arguments, no directory is opened. To read directory entries, you must call Initialize separately.
In the overloaded version that specifies a path name, the directory in that path is opened.
Opens the directory in the specified path.
Opens the directory in the specified path. This function uses a large amount of buffer space on the stack because it converts the path name from a multi-byte string into a wide string. Pay careful attention to the stack size.
CONFIDENTIAL