createPath

Create an entire path consisting of this folder along with all parent folders. The path should not contain '.' or '..' segments, which can be removed via the normalize() function.

Note that each segment is created as a folder, including the trailing segment.

void
createPath
(
cstring path
)

Throws

IOException upon system errors.

IllegalArgumentException if a segment exists but as a file instead of a folder.

Meta