Lines Matching refs:Spec

129 use File::Spec 0.8;
371 ($volume, $directories, $file) = File::Spec->splitpath( $path, 1);
375 my @dirs = File::Spec->splitdir($directories);
380 $parent = File::Spec->curdir;
384 $parent = File::Spec->catdir($volume, @dirs[0..$#dirs-1]);
389 $parent = File::Spec->catdir(@dirs[0..$#dirs-1]);
392 $parent = File::Spec->catpath($volume, $parent, '');
400 ($volume, $directories, $file) = File::Spec->splitpath( $path );
403 $parent = File::Spec->catpath($volume,$directories,'');
406 $parent = File::Spec->curdir
740 unless (File::Spec->file_name_is_absolute($path)) {
741 $path = File::Spec->rel2abs($path);
745 my ($volume, $directories, undef) = File::Spec->splitpath( $path, 1);
747 # Slightly less efficient than having a function in File::Spec
752 my @dirs = File::Spec->splitdir($directories);
757 my $dir = File::Spec->catpath($volume,
758 File::Spec->catdir(@dirs[0.. $#dirs - $pos]),
1051 files, as specified by the tmpdir() function in L<File::Spec>.
1082 (L<File::Spec>) unless a directory is specified explicitly with the
1156 $template = File::Spec->catfile($options{"DIR"}, $template);
1164 $template = File::Spec->catfile($options{"DIR"}, TEMPXXX);
1168 $template = File::Spec->catfile(File::Spec->tmpdir, TEMPXXX);
1236 Create a directory in tmpdir() (see L<File::Spec|File::Spec>).
1262 $tempdir = tempdir ( $template, DIR => File::Spec->tmpdir);
1314 my ($volume, $directories, undef) = File::Spec->splitpath( $template, 1);
1317 $template = (File::Spec->splitdir($directories))[-1];
1322 $template = File::Spec->catdir($options{"DIR"}, $template);
1327 $template = File::Spec->catdir(File::Spec->tmpdir, $template);
1337 $template = File::Spec->catdir($options{"DIR"}, TEMPXXX);
1341 $template = File::Spec->catdir(File::Spec->tmpdir, TEMPXXX);
1556 returned by L<File::Spec|File::Spec>. On some implementations this
1581 See L<File::Spec/tmpdir> for information on the choice of temporary
1589 my $tmpdir = File::Spec->tmpdir;
1595 my $template = File::Spec->catfile($tmpdir, TEMPXXX);
1673 my $template = File::Spec->catfile($dir, $prefix);
2065 L<POSIX/tmpnam>, L<POSIX/tmpfile>, L<File::Spec>, L<File::Path>