std::system
来自 cppreference.com
在头文件 <cstdlib> 中定义 |
||
int system( const char* command ); |
||
使用参数 command
调用主机环境的命令处理器(例如 /bin/sh
,cmd.exe
)。返回一个实现定义的值(通常是调用的程序返回的值)。
如果 command
是一个空指针,则检查主机环境是否具有命令处理器,如果存在命令处理器,则返回一个非零值。
内容 |
[编辑] 参数
command | - | 一个字符字符串,标识要在命令处理器中运行的命令。如果给出了一个空指针,则会检查命令处理器的存在。 |
[编辑] 返回值
实现定义的值。如果 command
是一个空指针,则当且仅当命令处理器存在时返回非零值。
[编辑] 备注
在 POSIX 系统上,返回值可以使用 WEXITSTATUS
和 WSTOPSIG
进行分解。
相关的 POSIX 函数 popen
使调用者能够访问 command
生成的输出。
在调用 std::system 之前,还需要显式刷新 std::cout,如果生成的进程执行任何屏幕 I/O。
[编辑] 示例
运行此代码
#include <cstdlib> #include <fstream> #include <iostream> int main() { std::system("ls -l >test.txt"); // executes the UNIX command "ls -l >test.txt" std::cout << std::ifstream("test.txt").rdbuf(); }
可能的输出
total 16 -rwxr-xr-x 1 2001 2000 8859 Sep 30 20:52 a.out -rw-rw-rw- 1 2001 2000 161 Sep 30 20:52 main.cpp -rw-r--r-- 1 2001 2000 0 Sep 30 20:52 test.txt
[编辑] 另请参阅
C 文档 用于 system
|