ディレクトリハンドルを閉じる
closedir は opendir で開いたディレクトリを閉じます。 成功すれば真を返します。
closedir
opendir
opendir my $dh, './sample'; my @files = readdir $dh; closedir $dh;