Execute CMD commands using C++(使用 C++ 执行 CMD 命令)
问题描述
在我的项目中,我想执行一些 CMD 命令.使用 C++ 执行此操作的语法是什么.
In my project I want to execute some CMD commands. What is the syntax for doing that using C++.
推荐答案
您可以使用名为 system();
的 C++ 函数执行 Windows 命令提示命令.为了更安全的标准,建议您使用 Windows 特定的 API,例如 ShellExecute 或 ShellExecuteEx.下面是如何使用 system()
函数运行 CMD 命令.
You can execute Windows Command prompt commands using a C++ function called system();
. For safer standards you are recommended to use Windows specific API'S like ShellExecute or ShellExecuteEx. Here is how to run CMD command using system()
function.
您应该在程序源代码中放置如下所示的 CMD 命令:
You should place the CMD command like shown below in the program source code:
system("CMD_COMMAND");
这是一个在 CMD 中执行 DATE 命令来查找日期的程序:
Here is a program which executes the DATE command in CMD to find the date:
#include <iostream>
using namespace std;
int main() {
system("DATE");
return 0;
}
这篇关于使用 C++ 执行 CMD 命令的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 C++ 执行 CMD 命令
基础教程推荐
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07