MicrOS
filesystem_file_info.h
Go to the documentation of this file.
1 #ifndef FILESYSTEM_FILE_INFO_H
2 #define FILESYSTEM_FILE_INFO_H
3 
4 #include <stdint.h>
5 #include "filesystem_time.h"
6 
7 typedef struct filesystem_file_info
8 {
9  char name[32];
10  char path[256];
12 
17 
18 #endif
char path[256]
Definition: filesystem_file_info.h:10
filesystem_time access_time
Definition: filesystem_file_info.h:15
char name[32]
Definition: filesystem_file_info.h:9
filesystem_time create_time
Definition: filesystem_file_info.h:13
filesystem_time modify_time
Definition: filesystem_file_info.h:14
uint32_t size
Definition: filesystem_file_info.h:11
Definition: filesystem_file_info.h:7
Definition: filesystem_time.h:6
size_t uint32_t
Unsigned integral type.
Definition: string.h:8