On this page
Function std::os::unix::fs::symlink
pub fn symlink<P: AsRef<Path>, Q: AsRef<Path>>(
original: P,
link: Q
) -> Result<()>
Available 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(())
}
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/os/unix/fs/fn.symlink.html