#[unsafe(no_mangle)]pub unsafe extern "C" fn fs_create_dir(
handle: *mut FsHandle,
name: *const c_char,
) -> i32Expand 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.