8 lines
133 B
Nim
8 lines
133 B
Nim
|
|
import os
|
||
|
|
|
||
|
|
try:
|
||
|
|
createDir("./path/to/dir")
|
||
|
|
echo "Directory now exists."
|
||
|
|
except OSError:
|
||
|
|
echo "Failed to create the directory."
|