中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

如何在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
泰州市| 同德县| 彭山县| 崇义县| 上林县| 凤城市| 夹江县| 如东县| 长沙市| 禄丰县| 海淀区| 柘荣县| 平邑县| 冷水江市| 邵阳市| 庆阳市| 阜城县| 诸暨市| 罗田县| 恩施市| 奈曼旗| 阿鲁科尔沁旗| 西乡县| 铜梁县| 金坛市| 河西区| 乐业县| 沙河市| 泽普县| 横峰县| 库车县| 鹿邑县| 循化| 积石山| 阿鲁科尔沁旗| 武强县| 西畴县| 行唐县| 交城县| 庆安县| 邹城市|