# **********************************************************
# ディリクトリリスト取得 ( 戻り値 : 配列 )
# **********************************************************
function GetDirList( $Path ) {
$ret = array();
if ( $dh = opendir( $Path ) ) {
while ( ($file = readdir($dh) ) !== false ) {
if ( filetype( $Path . "/" . $file ) == 'dir' ) {
if ( $file != "." && $file != ".." ) {
$ret[] = $file;
}
}
}
closedir( $dh );
}
return $ret;
}
|