Help for this page

Select Code to Download


  1. or download this
      -d $s and $s = abs_path($s) or return -1 ; 
      -d $d and $d = abs_path($d) or return -1 ;
    
  2. or download this
      -d $_ and $_ = abs_path($_) or return -1 for $s, $d;
    
  3. or download this
     (-d $_) ? ($_ = abs_path($_)) : (return -1) for $s, $d;