#include <ctype.h>
#include "fs_tools_i.h"
#include "ext2fs.h"
Data Structures | |
struct | EXT2FS_DINFO |
Defines | |
#define | MAX_DEPTH 128 |
#define | DIR_STRSZ 4096 |
Functions | |
uint8_t | ext2fs_dent_walk (TSK_FS_INFO *fs, INUM_T inode, TSK_FS_DENT_FLAG_ENUM flags, TSK_FS_DENT_TYPE_WALK_CB action, void *ptr) |
Process the contents of a directory and pass each file name to a callback function. |
uint8_t ext2fs_dent_walk | ( | TSK_FS_INFO * | fs, | |
INUM_T | inode, | |||
TSK_FS_DENT_FLAG_ENUM | flags, | |||
TSK_FS_DENT_TYPE_WALK_CB | action, | |||
void * | ptr | |||
) |
Process the contents of a directory and pass each file name to a callback function.
fs | File system to analyze | |
inode | Metadata address of directory to analyze | |
flags | Flags used during analysis | |
action | Callback function that is called for each file name | |
ptr | Pointer to data that is passed to callback |