Movatterモバイル変換


[0]ホーム

URL:


set_current_dir

std::env

Functionset_current_dir 

1.0.0 ·Source
pub fn set_current_dir<P:AsRef<Path>>(path: P) ->Result<()>
Expand description

Changes the current working directory to the specified path.

§Platform-specific behavior

This functioncurrently corresponds to thechdir function on Unixand theSetCurrentDirectoryW function on Windows.

Returns anErr if the operation fails.

§Examples

usestd::env;usestd::path::Path;letroot = Path::new("/");assert!(env::set_current_dir(&root).is_ok());println!("Successfully changed working directory to {}!", root.display());

[8]ページ先頭

©2009-2026 Movatter.jp