- or download this
find(
sub {
filestat( "ignored",
...
},
$pathname
);
- or download this
sub filestat {
if (-d $_) {
if ($_ ne "." && $_ ne "..") {
...
}
}
}
- or download this
sub iFileCount() { 0; }
sub iDirCount() { 1; }
sub iTotalSize() { 2; }
...
}
}
}