C语言 <stdlib.h> system 函数

  • 描述

    C库函数int system(const char *command)经过指定的命令名或程序名命令到主机环境中的命令已被完成后,必须由命令处理器,并返回执行。
  • 声明

    以下是system函数的声明。
    
    int system(const char *command)
    
    参数
    • command-这是C字符串,包含所请求变量的名称。
  • 返回值

    错误返回的值为-1,否则返回命令的返回状态。
    示例
    以下示例显示system函数的用法-
    
    #include <iostream>
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    
    int main () {
       char command[50];
    
       strcpy( command, "ls -l" );
       system(command);
    
       return(0);
    } 
    
    让我们编译并运行上面的程序,它将产生以下结果-
    
    drwxr-xr-x 2 apache apache 4096 Aug 22 07:25 hsperfdata_apache
    drwxr-xr-x 2 railo railo 4096 Aug 21 18:48 hsperfdata_railo
    rw------ 1 apache apache 8 Aug 21 18:48 mod_mono_dashboard_XXGLOBAL_1
    rw------ 1 apache apache 8 Aug 21 18:48 mod_mono_dashboard_asp_2
    srwx---- 1 apache apache 0 Aug 22 05:28 mod_mono_server_asp
    rw------ 1 apache apache 0 Aug 22 05:28 mod_mono_server_asp_1280495620
    srwx---- 1 apache apache 0 Aug 21 18:48 mod_mono_server_global
    
    下面的示例演示如何使用system()函数列出Windows计算机下当前目录中的所有文件和目录。
    
    #include <stdio.h>
    #include <string.h>
    
    int main () {
       char command[50];
    
       strcpy( command, "dir" );
       system(command);
    
       return(0);
    } 
    
    让我们编译并运行上面的程序,它将在我的Windows机器上产生以下结果-
    
    a.txt
    amit.doc
    sachin
    saurav
    file.c