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