摘要: use std::process::Command; fn callcmd(cmdstr: &str) { Command::new("cmd") .arg("/S") .arg("/c") .arg(cmdstr) .output() .expect("-1"); } fn main() { le 阅读全文
posted @ 2023-11-28 14:05 CrossPython 阅读(154) 评论(0) 推荐(1) 编辑