Go to the first, previous, next, last section, table of contents.


_dos_findnext

Syntax

#include <dos.h>

unsigned int _dos_findnext(struct _find_t *result);

Description

This finds the next file in the search started by _dos_findfirst.

See section _dos_findfirst.

This function does not support long filenames, even on systems where the LFN API (see section _use_lfn) is available. For LFN-aware functions with similar functionality see section findfirst, and section findnext. Also see section opendir, and section readdir, which are Posix-standard.

Return Value

Zero if a match is found, DOS error code if not found (and sets errno).

Portability

not ANSI, not POSIX


Go to the first, previous, next, last section, table of contents.