pub fn chroot<P: AsRef<Path>>(dir: P) -> Result<()>
Available on Unix only.
Expand description
将当前进程的根目录更改为指定路径。
这通常需要权限,例如 root 或特定功能。
这不会改变当前的工作目录; 之后您应该调用 std::env::set_current_dir
。
Examples
use std::os::unix::fs;
fn main() -> std::io::Result<()> {
fs::chroot("/sandbox")?;
std::env::set_current_dir("/")?;
// 继续在沙盒中工作
Ok(())
}
Run