溫馨提示×

如何在c++中調(diào)用系統(tǒng)cmd命令進行文件操作

c++
小樊
94
2024-09-15 18:37:10
欄目: 編程語言

在C++中,你可以使用system()函數(shù)來調(diào)用系統(tǒng)的cmd命令

#include<iostream>
#include <cstdlib>

int main() {
    // 創(chuàng)建一個文件夾
    std::system("mkdir new_folder");

    // 復制一個文件
    std::system("copy source.txt destination.txt");

    // 刪除一個文件
    std::system("del file_to_delete.txt");

    // 移動一個文件
    std::system("move source.txt destination_folder");

    return 0;
}

請注意,這些命令是基于Windows的cmd命令。如果你使用的是Linux或macOS,你需要使用相應的命令,例如mkdir、cp、rmmv

在實際編程中,使用system()函數(shù)可能會有一些安全風險,因為它允許執(zhí)行任意命令。在處理不受信任的輸入時,請確保對輸入進行適當?shù)尿炞C和清理。

0