RosettaCodeData/Task/Make-directory-path/Raku/make-directory-path-2.raku
2023-07-01 13:44:08 -04:00

3 lines
110 B
Raku

for [\,] $*SPEC.splitdir("../path/to/dir") -> @path {
mkdir $_ unless .e given $*SPEC.catdir(@path).IO;
}