Function cargo::util::paths::link_or_copy [−][src]
pub fn link_or_copy(
src: impl AsRef<Path>,
dst: impl AsRef<Path>
) -> CargoResult<()>
Hardlink (file) or symlink (dir) src to dst if possible, otherwise copy it.
If the destination already exists, it is removed before linking.