devela::_dep::rustix::fs

Function mknodat

pub fn mknodat<P, Fd>(
    dirfd: Fd,
    path: P,
    file_type: FileType,
    mode: Mode,
    dev: u64,
) -> Result<(), Errno> 
where P: Arg, Fd: AsFd,
Available on crate feature dep_rustix only.
Expand description

mknodat(dirfd, path, mode, dev)—Creates special or normal files.

§References