Documentation for method dir-sep
assembled from the following pages:
Class: IO::Spec::Unix §
From IO::Spec::Unix
(IO::Spec::Unix) method dir-sep §
Defined as:
method dir-sep(--> Str)
Returns the string "/"
representing canonical directory separator character.
IO::Spec::Unix.dir-sep.say; # OUTPUT: «/»
Class: IO::Spec::Win32 §
From IO::Spec::Win32
(IO::Spec::Win32) method dir-sep §
Defined as:
method dir-sep(--> Str)
Returns the string 「\」
representing canonical directory separator character.
IO::Spec::Win32.dir-sep.say; # OUTPUT: «\»