Skip to main content

fs_create_dir

Function fs_create_dir 

Source
#[unsafe(no_mangle)]
pub unsafe extern "C" fn fs_create_dir( handle: *mut FsHandle, name: *const c_char, ) -> i32
Expand description

Create a directory at the given path.

Parent directories must already exist. The name argument may be a /-separated path such as "a/b/newdir".

ยงSafety

name must be a valid null-terminated C string.