RosettaCodeData/Task/Make-directory-path/Raku/make-directory-path-2.raku

4 lines
110 B
Raku
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
for [\,] $*SPEC.splitdir("../path/to/dir") -> @path {
mkdir $_ unless .e given $*SPEC.catdir(@path).IO;
}