#[no_mangle]
pub unsafe extern "C" fn nstd_fs_create_dirs(
    name: &NSTDStr
) -> NSTDIOError
Available on crate feature nstd_fs only.
Expand description

Recursively creates new directories on the file system.

Parameters:

  • const NSTDStr *name - A path to the new directory.

Returns

NSTDIOError errc - The I/O operation error code.

Safety

This operation can cause undefined behavior if name’s data is invalid.