soft_link

Function soft_link 

Source
pub fn soft_link<P: AsRef<Path>, Q: AsRef<Path>>(
    original: P,
    link: Q,
) -> Result<()>
👎Deprecated: replaced with std::os::unix::fs::symlink and std::os::windows::fs::{symlink_file, symlink_dir}
Expand description

Creates a new symbolic link on the filesystem.

The link path will be a symbolic link pointing to the original path.

Wrapper for fs::soft_link.