Unified interface to qfindfirst(),qfindnext(),qfindclose() functions.
These are low level functions, it is better to use enumerate_files().
|
#define | __FAT__ |
|
#define | SDIRCHAR "\\" |
|
#define | DIRCHAR '\\' |
|
#define | DRVCHAR ':' |
|
#define | EXTCHAR '.' |
| Extension character is '.' for all systems.
|
|
#define | MAXPATH 260 |
|
#define | FA_RDONLY 0x01 |
|
#define | FA_DIREC 0x10 |
|
#define | FA_ARCH 0x20 |
|
#define | MAXDRIVE _MAX_DRIVE |
|
#define | MAXDIR _MAX_DIR |
|
#define | MAXFILE _MAX_FNAME |
|
#define | MAXEXT _MAX_EXT |
|
◆ qfindfirst()
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()
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()
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 |