closedir

ディレクトリハンドルを閉じる

構文

解説

closediropendir で開いたディレクトリを閉じます。 成功すれば真を返します。

opendir my $dh, './sample';
my @files = readdir $dh;
closedir $dh;