位置:首页 > 高级语言 > C语言标准库 > system() - C语言库函数

system() - C语言库函数

C库函数 int system(const char *command) 通过指定的命令要执行的命令处理器并返回主机环境的命令后,已经完成的命令名称或程序名。 

声明

以下是system() 函数的声明。

int system(const char *command)

参数

  • command -- 这是C的字符串,其中包含所需的变量的名称。

返回值

返回的值是-1错误,否则命令的返回状态。

例子

下面的例子演示了如何使用 system() 函数列出了在UNIX机器的当前目录下的所有文件和目录。

#include <stdio.h>
#include <string.h>

int main ()
{
   char command[50];

   strcpy( command, "ls -l" );
   system(command);

   return(0);
} 

让我们编译和运行上面的程序,我的Unix机器上,这将产生以下结果:

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() 函数列出了窗机在当前目录下的所有文件和目录。

#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