Help for this page

Select Code to Download


  1. or download this
    if (-f "data/$file.data" or -f "data/$otherfile.data) {
      ...
    
  2. or download this
    use FindBin;
    my $dataPath = "$FindBin::Bin/data";
    if (-f "$dataPath/$file.data" or -f "$dataPath/$otherdata.data") {
      ...