當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C語言 system()用法及代碼示例



描述

C庫函數int system(const char *command)傳遞由指定的命令名稱或程序名稱command到主機環境由命令處理器執行,並在命令完成後返回。

聲明

以下是 system() 函數的聲明。

int system(const char *command)

參數

  • command─ 這是包含所請求變量名稱的 C 字符串。

返回值

錯誤時返回的值為 -1,否則返回命令的狀態。

示例

下麵的例子展示了使用 system() 函數列出 unix 機器下當前目錄下的所有文件和目錄的用法。

#include <iostream>
#include <stdio.h>
#include <stdlib.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() 函數列出 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

相關用法


注:本文由純淨天空篩選整理自 C library function - system()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。