Function std::os::windows::fs::symlink_file1.1.0[][src]

pub fn symlink_file<P: AsRef<Path>, Q: AsRef<Path>>(
    original: P,
    link: Q
) -> Result<()>
This is supported on Windows only.
Expand description

在文件系统上创建一个新的文件符号链接。

link 路径将是指向 original 路径的文件符号链接。

Examples

use std::os::windows::fs;

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