In article <[EMAIL PROTECTED]>, Tassilo von Parseval wrote:
> On Sun, Jul 06, 2003 at 02:43:14PM +0530 Pandey Rajeev-A19514 wrote:
>
>> Do we have a perl function equivalent with the same functionality as
>> the function "scandir" in c language ?
For more complicated directory searches, you may a
On Sun, Jul 06, 2003 at 02:43:14PM +0530 Pandey Rajeev-A19514 wrote:
> Do we have a perl function equivalent with the same functionality as
> the function "scandir" in c language ?
No, we don't. Simply do it yourself:
my $dir = "/path";
opendir DIR, $dir or die $!;
my @list = sort {