[][src]Function linux::syscall::unlinkat

pub fn unlinkat(dir: c_int, file: KStr, flags: c_int) -> c_int

Unlinks a file relative to a directory.

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

[argument, file] The path of the file.

[argument, flags] The flags used while unlinking the file.

[return_value] Returns success or an error value.

= See also

  • link:man:unlinkat(2)