Help for this page

Select Code to Download


  1. or download this
    for (glob ("$upload_dir/$in{'imgid'}.*")) {
       unlink($_)
          or die("Can't delete file $_: $!\n");
    }
    
  2. or download this
    use Scalar::Util qw( tainted );
    
    ...
       unlink(/(.*)/s)
          or die("Can't delete file $_: $!\n");
    }