RosettaCodeData/Task/Make-directory-path/Nim/make-directory-path.nim

8 lines
133 B
Nim
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import os
try:
createDir("./path/to/dir")
echo "Directory now exists."
except OSError:
echo "Failed to create the directory."