Help for this page

Select Code to Download


  1. or download this
     
    print __FILE__;
    
  2. or download this
     
    sub file_name_is_absolute {
        my ($self,$file) = @_;
        return scalar($file =~ m:^/:s);
    }
    
  3. or download this
     
    package FOO; 
    use File::Spec;
    ...
    
    
    1;