亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

如何在c++中使用管道技術執行cmd命令

c++
小樊
104
2024-09-15 18:39:11
欄目: 編程語言

在C++中,你可以使用popen()函數來創建一個管道并執行CMD命令

#include<iostream>
#include <fstream>
#include<string>

int main() {
    // 要執行的CMD命令
    std::string cmd = "dir";
    
    // 打開管道并執行命令
    FILE* pipe = popen(cmd.c_str(), "r");
    if (!pipe) {
        std::cerr << "Failed to execute command."<< std::endl;
        return 1;
    }

    // 讀取命令輸出
    char buffer[128];
    std::string result;
    while (fgets(buffer, sizeof(buffer), pipe)) {
        result += buffer;
    }

    // 關閉管道
    pclose(pipe);

    // 輸出結果
    std::cout << "Command output: "<< std::endl<< result<< std::endl;

    return 0;
}

這個示例將執行dir命令(列出當前目錄下的文件和文件夾),然后將輸出讀取到result字符串中。請注意,這個示例僅適用于Unix系統(如Linux和macOS)。在Windows上,你需要使用_popen()函數代替popen()

對于Windows系統,請包含<stdio.h>頭文件,并將popen()替換為_popen(),將pclose()替換為_pclose()。這是一個適用于Windows的示例:

#include<iostream>
#include <fstream>
#include<string>
#include<stdio.h>

int main() {
    // 要執行的CMD命令
    std::string cmd = "dir";
    
    // 打開管道并執行命令
    FILE* pipe = _popen(cmd.c_str(), "r");
    if (!pipe) {
        std::cerr << "Failed to execute command."<< std::endl;
        return 1;
    }

    // 讀取命令輸出
    char buffer[128];
    std::string result;
    while (fgets(buffer, sizeof(buffer), pipe)) {
        result += buffer;
    }

    // 關閉管道
    _pclose(pipe);

    // 輸出結果
    std::cout << "Command output: "<< std::endl<< result<< std::endl;

    return 0;
}

這個示例將在Windows上執行相同的操作。

0
商河县| 鹰潭市| 赞皇县| 景谷| 南华县| 扶绥县| 固安县| 江口县| 调兵山市| 津市市| 白银市| 阳山县| 兰坪| 襄垣县| 浦江县| 西平县| 余庆县| 萨迦县| 大埔县| 天门市| 长汀县| 灵石县| 孟连| 钟山县| 中方县| 呼玛县| 孟村| 长寿区| 盘锦市| 西乡县| 广丰县| 满洲里市| 临沧市| 乌审旗| 阳江市| 晋中市| 夏邑县| 福贡县| 贡山| 保德县| 翁牛特旗|