std::fs::soft_link

Function std::fs::soft_link

pub fn soft_link<P: AsRef<Path>, Q: AsRef<Path>>(src: P, dst: Q) -> Result<()>
Deprecated since 1.1.0: replaced with std::os::unix::fs::symlink and std::os::windows::fs::{symlink_file, symlink_dir}

Creates a new symbolic link on the filesystem.

The dst path will be a symbolic link pointing to the src path. On Windows, this will be a file symlink, not a directory symlink; for this reason, the platform-specific std::os::unix::fs::symlink and std::os::windows::fs::{symlink_file, symlink_dir} should be used instead to make the intent explicit.

Examples

use std::fs;

fs::soft_link("a.txt", "b.txt")?;

© 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/fs/fn.soft_link.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部