programming-examples/perl/File/The closedir function closes the directory that was opened by the opendir function.pl
2019-11-15 12:59:38 +01:00

14 lines
212 B
Perl

#Format
#closedir (DIRHANDLE);
#closedir DIRHANDLE;
opendir(DIR, "..") || die "Can't open: $!\n";
@parentfiles=readdir(DIR);
closedir(DIR);
foreach $file ( @parentfiles ){
print "$file\n";
}