method catdir
Documentation for method catdir
assembled from the following types:
class IO::Spec::Unix
From IO::Spec::Unix
(IO::Spec::Unix) method catdir
Defined as:
method catdir (* --> Str)
Concatenates multiple path fragments and returns the canonical representation of the resultant path as a string. The @parts
are Str
objects and are allowed to contain path separators.
IO::Spec::Unix.catdir(<foo/bar ber perl>).say; # OUTPUT: «foo/bar/ber/perl»
class IO::Spec::Win32
From IO::Spec::Win32
(IO::Spec::Win32) method catdir
Defined as:
method catdir (* --> Str)
Concatenates multiple path fragments and returns the canonical representation of the resultant path as a string. The @parts
are Str
objects and are allowed to contain path separators.
IO::Spec::Win32.catdir(<foo/bar ber perl>).say;# OUTPUT: «foo\bar\ber\perl»
class IO::Spec::Cygwin
From IO::Spec::Cygwin
(IO::Spec::Cygwin) method catdir
Defined as:
method catdir (* --> Str)
Concatenates multiple path fragments and returns the canonical representation of the resultant path as a string. The @parts
are Str
objects and are allowed to contain path separators.
IO::Spec::Cygwin.catdir(<foo/bar ber perl>).say;# OUTPUT: «foo/bar/ber/perl»