Help for this page

Select Code to Download


  1. or download this
    opendir (DIR, "/home/costas/test") or die "cannot opendir dir";
    foreach $file (readdir(DIR)) 
    {
        rename($file, lc($file));
    
  2. or download this
    my $path = '/home/costas/test';
    
    ...
    }
    
    closedir DIR;