Help for this page

Select Code to Download


  1. or download this
    opendir (DIR,"./");
    @files = readdir DIR;
    
  2. or download this
    foreach $file (@files){
    if ( -f $file){
    ...
    push (@wanted) $file if ((time() - $mtime) < (24*60*60);
    }
    }