A directory which cannot be read. The directory will not be descended into.
FTW_DP
A directory being visited in post-order ( nftw only).
FTW_NS
A file for which no stat(2) information was available. The contents of the .Vt stat structure are undefined.
FTW_SL
A symbolic link.
FTW_SLN
A symbolic link with a non-existent target ( nftw only).
The ftw function traverses the tree in pre-order. That is, it processes the directory before the directorys contents.
The maxfds argument specifies the maximum number of file descriptors to keep open while traversing the tree. It has no effect in this implementation.
The nftw function has an additional flags argument with the following possible values:
FTW_PHYS
Physical walk, do not follow symbolic links.
FTW_MOUNT
The walk will not cross a mount point.
FTW_DEPTH
Process directories in post-order. Contents of a directory are visited before the directory itself. By default, nftw traverses the tree in pre-order.
FTW_CHDIR
Change to a directory before reading it. By default, nftw will change its starting directory. The current working directory will be restored to its original value before nftw returns.