Unified interface to qfindfirst(),qfindnext(),qfindclose() functions.
More...
Go to the source code of this file.
|
| CASSERT (sizeof(qffblk_t)==0x140) |
idaman THREAD_SAFE int ida_export | qfindfirst (const char *pattern, struct qffblk64_t *blk, int attr) |
| Find first file that matches the pattern.
|
idaman THREAD_SAFE int ida_export | qfindnext (struct qffblk64_t *blk) |
| Find next file that matches the pattern.
|
idaman THREAD_SAFE void ida_export | qfindclose (struct qffblk64_t *blk) |
| Stop the file enumeration and free internal structures.
|
Unified interface to qfindfirst(),qfindnext(),qfindclose() functions.
These are low level functions, it is better to use enumerate_files().
◆ CASSERT()
◆ qfindfirst()
idaman THREAD_SAFE int ida_export qfindfirst |
( |
const char * | pattern, |
|
|
struct qffblk64_t * | blk, |
|
|
int | attr ) |
Find first file that matches the pattern.
- Parameters
-
pattern | file name pattern, usually with * and ? wildcards |
blk | structure that will hold the answer. blk->ff_name will hold the file name, for example. |
attr | the desired file types (#FA_DIREC for directories only or 0 for both directories and files) |
- Returns
- 0 if found a file, other values mean error (check qerrno)
◆ qfindnext()
idaman THREAD_SAFE int ida_export qfindnext |
( |
struct qffblk64_t * | blk | ) |
|
Find next file that matches the pattern.
- Parameters
-
blk | structure that holds the current state. blk->ff_name will hold the next file name upon return. |
- Returns
- 0 if found the next file, other values mean error (check qerrno)
◆ qfindclose()
idaman THREAD_SAFE void ida_export qfindclose |
( |
struct qffblk64_t * | blk | ) |
|
Stop the file enumeration and free internal structures.
- Note
- usually there is no need to call this function manually, it is called from the qffblk64_t destructor.
- Parameters
-
blk | file enumeration structure |