NTURT Zephyr v0.0.1
NTURT common library for Zephyr RTOS
Loading...
Searching...
No Matches
fs.h File Reference

File system support. More...

Macros

#define FS_MAX_PATH_LEN   256
 Maximum length of a path.
 

Functions

int fs_mkdir_p (const char *path)
 Create a directory and all its parent directories if they do not exist.
 

Detailed Description

File system support.

Author
quantumspawner
Version
0.0.1
Date
2025-08-03

Macro Definition Documentation

◆ FS_MAX_PATH_LEN

#define FS_MAX_PATH_LEN   256

Maximum length of a path.

Function Documentation

◆ fs_mkdir_p()

int fs_mkdir_p ( const char * path)

Create a directory and all its parent directories if they do not exist.

Parameters
pathPath to the directory to create.
Returns
0 on success, negative error code on failure.