ジャンプ先: 概要. 戻り値. 関連. MEL 例.

概要

pclose int

pclose は、取り消し不可能照会不可能、および編集不可能です。

popen で開いたパイプを閉じ、問題がない場合はゼロ、エラーが発生した場合はゼロ以外を返します。

戻り値

intエラー コード

関連

fclose, feof, fflush, fgetline, fgetword, fopen, fprint, fread, frewind, fwrite, popen

MEL 例

// Unix specific example.  Note: if you really want to get a directory
// listing, please use the "getFileList" command instead.  This is just
// used as a simple example.
//
$pipe = popen( "ls -1", "r" );
string $dirList[];
while ( !feof( $pipe ) ) {
    $dirList[size( $dirList )] = fgetline( $pipe );
}
pclose( $pipe );

// Windows specific example.  Note: if you really want to get a directory
// listing, please use the "getFileList" command instead.  This is just
// used as a simple example.
//
$pipe = popen( "DIR /B", "r" );
string $dirList[];
while ( !feof( $pipe ) ) {
    $dirList[size( $dirList )] = fgetline( $pipe );
}
pclose( $pipe );