system

[機能]

  与えられた文字列を OS に渡し,システムコマンドとして実行します.正しく実行されると 0 を返し,そうでない場合は 0 以外を返します.

[形式]
#include <stdlib.h>

int system(const char *str)
	str : 実行するコマンド		
[使用例]

  1. 「 ls -l > temp.txt 」コマンドを実行し,その結果作成されたファイルの内容を画面に出力します.
    #include <stdio.h>
    #include <stdlib.h>
    
    int main()
    {
    	system("ls -l > temp.txt");
    	system("cat temp.txt");
    
    	return 0;
    }
    			
    (出力) -ファイルの内容-
    -a--rw-     114 Sep  8 2001 11:41 file1 
    -a--rw-      28 Sep  8 2001 11:05 file2 
    -a--rw-      30 Sep  8 2001 11:05 file3 
    -a--rwx      30 Sep  7 2001 10:16 jc1.bat 
    -a--rwx      11 Sep  7 2001 10:16 je1.bat 
    -a--rw-     854 Sep  8 2001 11:41 member~1.cla 
    -a--rw-       0 Sep  9 2001 08:31 temp 
    -a--rw-       0 Sep  9 2001 08:31 temp.txt 
    -a--rw-     127 Sep  9 2001 08:30 test.cpp 
    -a--rwx  299710 Sep  9 2001 08:30 test.exe 
    -a--rw-     364 Sep  8 2001 16:42 test1~2.jav 
    -a--rw-    1135 Sep  8 2001 17:15 test~1.cla 
    -a--rw-     503 Sep  8 2001 17:15 test~1.jav 
    			

菅沼ホーム 本文目次 演習問題解答例 付録目次 索引