Help for this page

Select Code to Download


  1. or download this
    while (defined($_ = readdir(DIR))) {
        next if /^\.\.?$/;
        unless (delete $files{$_}) {
            print "New: $_\n";
        }
    }
    
  2. or download this
    for (keys %files) {
        print "Gone: $_\n";
    }