Function symlink

fn symlink<P: AsRef<crate::path::Path>, Q: AsRef<crate::path::Path>>(original: P, link: Q) -> io::Result<()>

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(())
}