[][src]Function linux::syscall::mkdirat

pub fn mkdirat(dir: c_int, file: KStr, mode: umode_t) -> c_int

Creates a directory relative to a directory.

[argument, dir] The directory relative to which relative paths will be interpreted.

[argument, file] The path of the new directory.

[argument, mode] The mode of the new directory.

[return_value] Returns success or an error value.

= See also

  • link:man:mkdirat(2)