zos_file_parameters_t Struct Reference

File listing parameters. More...

Data Fields

const char * name
 Match by filename, use the * character at the end as a wildcard (i.e. More...
 
uint32_t min_version
 Minimum file version, set as 0 if unused.
 
uint32_t max_version
 Maximum file version, set as 0 if unused.
 
uint16_t offset
 The start sector to beging searching for files (leave 0 if unused)
 
uint16_t limit
 The maximum number of files to return (leave 0 if unused)
 
uint16_t flags
 Match by file flags (all specified flags must be in file's flags), zos_file_flag_t set as 0 if unused.
 
uint8_t memory
 File memory location, zos_file_memory_t, set as 0 if unused.
 
uint8_t type
 File type, zos_file_type_t, set as 0 if unused.
 

Detailed Description

Field Documentation

const char* zos_file_parameters_t::name

Match by filename, use the * character at the end as a wildcard (i.e.

match on all chars before * character) Leave NULL if unused

Examples:
basic/file_list/file_list.c, and basic/json_parser/parse_all_examples.c.