flutter使用Command库调用cmd命令或者shell命令,并支持多个参数和指定文件夹目录

想要在不同的平台上运行flutter doctor命令,就需要知道对应的平台是windows还是linux,如果是windows就需要调用cmd命令,如果是linux平台,就需要调用sh命令,所以可以通过cfg!实现不同平台的判断,然后调用不同的脚本。

rust 复制代码
use std::process::Command;


pub fn run_cmd() {
    // choice a platform use cfg command
    let flutter_doctor = "pwd";
    let out_put = if cfg!(target_os = "windows") {
        Command::new("cmd").arg("/c").arg(flutter_doctor).output().expect("cmd run error")
    } else {
        Command::new("sh").arg("-c").arg(flutter_doctor).output().expect("shell exec error!")
    };
    let output_str = String::from_utf8_lossy(&out_put.stdout);
    println!("{}", output_str);
}

此时运行上述代码,会打印出当前运行命令所在的文件夹:

可以看到运行的文件夹跑到src-build里面了,这个时候运行flutter doctor肯定是不生效的,当然运行在这个文件夹也是合情合理的,但是我们需要让他跳到外面一层,然后再运行flutter doctor才有效果,所以需要在运行flutter doctor之前,切换文件夹:

rust 复制代码
use std::process::Command;
use std::io::{self, Write};

fn main() {
    // 指定要运行命令的目录
    let flutter_project_dir = "path/to/flutter/project";

    let output = if cfg!(target_os = "windows") {
        // Windows 平台
        Command::new("cmd")
            .args(&["/C", "cd", &flutter_project_dir, "&&", "flutter", "doctor"])
            .output()
            .expect("Failed to execute command")
    } else {
        // macOS 平台
        Command::new("sh")
            .args(&["-c", &format!("cd {} && flutter doctor", &flutter_project_dir)])
            .output()
            .expect("Failed to execute command")
    };

    // 打印命令输出
    io::stdout().write_all(&output.stdout).unwrap();
    io::stderr().write_all(&output.stderr).unwrap();
}

在这个示例中,我们首先指定了要运行命令的目录 flutter_project_dir。然后,我们使用 Command::new("cmd") 来启动 Windows 的命令行解释器,并通过参数 /c 来告诉它执行完后退出。接着,我们使用 cd 命令切换到指定目录,然后执行 flutter doctor 命令。

最后,我们通过 output() 方法获取命令的输出,并将其打印出来。请确保将 path/to/flutter/project 替换为实际的 Flutter 项目目录路径。

相关推荐
Patrick_Wilson16 分钟前
sccache 用在 Rust 上为什么常「不省编译」:原理、限制与 Windows 接入
ci/cd·rust·编译器
k4m7v2pz7 小时前
rvs 26.8.43 → 26.8.53 更新概览:MCP 落地、审计增强与谬误澄清
rust·repl·mcp server·rust-verb-shell·rvs·shell 工具
程序员爱钓鱼8 小时前
Rust impl详解:为Struct定义方法与关联函数
前端·后端·rust
静水流深zz8 小时前
Flutter AI Harness 如何让 Agent 参与软件开发全流程
android·前端·人工智能·flutter·大前端
k4m7v2pz8 小时前
Rust 程序在 ReactOS 上“加载即崩“:从崩溃地址 0x6107104d 到 CRT 依赖的深度排查
rust·交叉编译·逆向工程·reactos·pe格式·windows兼容
Thneonl1 天前
一个人从 Rust 内核做到 React 前端:我做了一个云原生 SRE 巡检图谱桌面工具
rust
程序员爱钓鱼1 天前
Rust Struct结构体详解:定义自己的复杂数据类型
后端·面试·rust
SoaringHeart1 天前
Flutter最佳实践:Web项目中文字体首次加载乱码问题解决
前端·flutter
苏灿烤鱼1 天前
公司**不可计算,就自己做操作系统
rust·typescript·agent
程序员老刘1 天前
Flutter 3.47 更新要点:Material 正式分家,老项目先别急着更新
flutter·ai编程·客户端