main.rs
#![windows_subsystem = "windows"]
use std::process::Command;
use std::os::windows::process::CommandExt;
use std::thread::sleep;
use std::time::Duration;
fn main() {
let time_seconds = Duration::from_secs(5);
sleep(time_seconds); // 延迟5秒执行以下程序
let output = if cfg!(target_os = "windows") {
Command::new("cmd")
.creation_flags(0x08000000)
.arg("/C")
.arg("Rundll32.exe user32.dll,LockWorkStation")
.output()
.expect("failed to execute process")
} else {
Command::new("sh")
.arg("-c")
.arg("echo hello")
.output()
.expect("failed to execute process")
};
let hello = output.stdout;
println!("{:?}", hello);
}
标签:std,use,process,windows,实例,arg,output,rust,延迟
From: https://www.cnblogs.com/Nazorine/p/16707506.html