devela::_dep::rustix::fs

Function renameat

pub fn renameat<P, Q, PFd, QFd>(
    old_dirfd: PFd,
    old_path: P,
    new_dirfd: QFd,
    new_path: Q,
) -> Result<(), Errno> 
where P: Arg, Q: Arg, PFd: AsFd, QFd: AsFd,
Available on crate feature dep_rustix only.
Expand description

renameat(old_dirfd, old_path, new_dirfd, new_path)—Renames a file or directory.

§References