摘要:
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
阅读(306)
评论(0)
推荐(1)
浙公网安备 33010602011771号