Lines Matching refs:Spec

1 package File::Spec::Mac;
5 require File::Spec::Unix;
9 @ISA = qw(File::Spec::Unix);
21 File::Spec::Mac - File::Spec for Mac OS (Classic)
25 require File::Spec::Mac; # Done internally by File::Spec if needed
57 to portability reasons. Since C<File::Spec-E<gt>catdir()> returns relative paths
137 like passingC<File::Spec-E<gt>rootdir()> as the first argument, i.e.
177 versions of File::Spec come with a method called C<catpath()> (see
185 $dir = File::Spec->catdir("tmp","sources");
186 $abs_path = File::Spec->catpath("MacintoshHD:", $dir,"");
276 C<File::Spec-E<gt>catfile()> returns relative paths on all other
399 1.2 of File::Spec::Mac, this does no longer consult the local filesystem.
403 File::Spec->file_name_is_absolute("a"); # false (relative)
404 File::Spec->file_name_is_absolute(":a:b:"); # false (relative)
405 File::Spec->file_name_is_absolute("MacintoshHD:"); # true (absolute)
406 File::Spec->file_name_is_absolute(""); # true (absolute)
442 ($volume,$directories,$file) = File::Spec->splitpath( $path );
443 ($volume,$directories,$file) = File::Spec->splitpath( $path, $no_file );
498 @dirs = File::Spec->splitdir( $directories );
511 File::Spec->splitdir( ":a:b::c:" ); and
512 File::Spec->splitdir( ":a:b::c" );
520 File::Spec->splitdir( ":a:b::c::" );
567 $path = File::Spec->catpath($volume,$directory,$file);
616 $rel_path = File::Spec->abs2rel( $path ) ;
617 $rel_path = File::Spec->abs2rel( $path, $base ) ;
708 $abs_path = File::Spec->rel2abs( $path ) ;
709 $abs_path = File::Spec->rel2abs( $path, $base ) ;
764 See the authors list in I<File::Spec>. Mac OS support by Paul Schinder
769 See L<File::Spec> and L<File::Spec::Unix>. This package overrides the