This is used for directory manipulation. More...
Functions | |
| tFList * | GfDirGetList (const char *dir) |
| Get the list of files of a given directory. More... | |
| tFList * | GfDirGetListFiltered (const char *dir, const char *suffix) |
| Get the list of files with matching suffix of a given directory. More... | |
| void | GfDirFreeList (tFList *list, tfDirfreeUserData freeUserData, bool freename, bool freedispname) |
| Free a directory list. More... | |
This is used for directory manipulation.
| void GfDirFreeList | ( | tFList * | list, |
| tfDirfreeUserData | freeUserData, | ||
| bool | freename, | ||
| bool | freedispname | ||
| ) |
Free a directory list.
| list | List of files |
| freeUserData | User function used to free the user data |
| freename | If true name gets freed too |
| freedispname | If true display name gets freed too |
Definition at line 76 of file directory.cpp.
| tFList* GfDirGetList | ( | const char * | dir | ) |
Get the list of files of a given directory.
| dir | directory name |
Definition at line 43 of file directory.cpp.
| tFList* GfDirGetListFiltered | ( | const char * | dir, |
| const char * | suffix | ||
| ) |
Get the list of files with matching suffix of a given directory.
| dir | directory name |
| suffix | suffix (without dot) |
Definition at line 59 of file directory.cpp.