Function std::os::unix::fs::chroot[][src]

pub fn chroot<P: AsRef<Path>>(dir: P) -> Result<()>
🔬 This is a nightly-only experimental API. (unix_chroot #84715)
This is supported on Unix only.
Expand description

将当前进程的根目录更改为指定路径。

这通常需要权限,例如 root 或特定功能。

这不会改变当前的工作目录; 之后您应该调用 std::env::set_current_dir

Examples

#![feature(unix_chroot)]
use std::os::unix::fs;

fn main() -> std::io::Result<()> {
    fs::chroot("/sandbox")?;
    std::env::set_current_dir("/")?;
    // 继续在沙盒中工作
    Ok(())
}
Run