Function orkhon::prelude::ops::nn::tract_downcast_rs::__std::os::unix::fs::symlink1.1.0[][src]

pub fn symlink<P, Q>(original: P, link: Q) -> Result<(), Error> where
    P: AsRef<Path>,
    Q: AsRef<Path>, 
This is supported on Unix only.

Creates a new symbolic link on the filesystem.

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

Examples

use std::os::unix::fs;

fn main() -> std::io::Result<()> {
    fs::symlink("a.txt", "b.txt")?;
    Ok(())
}