This reference page is linked to from the following overview topics: FBX SDK 2014.
#include <fbxfolder.h>
Class for iterating into file system folders and the items contained.
Definition at line 25 of file fbxfolder.h.
Public Types |
|
| enum | EEntryType { eRegularEntry, eFolderEntry } |
| The different entry type that can be found
in folders. More... |
|
Public Member Functions |
|
| bool | Open (const char *pFolderPath_UTF8) |
| Open the specified folder for browsing its
content. |
|
| bool | Next () |
| Get the next item in the folder. |
|
| EEntryType | GetEntryType () const |
| Get the type of the current entry in the
folder. |
|
| FbxString | GetEntryName () const |
| Retrieve the name of the current entry in
the folder. |
|
| char * | GetEntryExtension () const |
| Retrieve the extension name of the current
entry. |
|
| void | Close () |
| Close the folder when done browsing its
content. |
|
| bool | IsOpen () const |
| Find out if the folder was successfully
opened the last time Open was called. |
|
| enum EEntryType |
The different entry type that can be found in folders.
| eRegularEntry |
Regular entry, such as file. |
| eFolderEntry |
Folder entry that potentially contain more files. |
Definition at line 29 of file fbxfolder.h.
{
eRegularEntry,
eFolderEntry
};
| bool Open | ( | const char * | pFolderPath_UTF8 | ) |
Open the specified folder for browsing its content.
| pFolderPath_UTF8 | The folder path to open. |
| bool Next | ( | ) |
Get the next item in the folder.
| EEntryType GetEntryType | ( | ) | const |
Get the type of the current entry in the folder.
| FbxString GetEntryName | ( | ) | const |
Retrieve the name of the current entry in the folder.
| char* GetEntryExtension | ( | ) | const |
Retrieve the extension name of the current entry.
| void Close | ( | ) |
Close the folder when done browsing its content.
| bool IsOpen | ( | ) | const |
Find out if the folder was successfully opened the last time Open was called.