dirExists()
ディレクトリーがあればtrueを戻す。
書式:
variable
= dirExists(
path
)
例:
if
dirExists(
"../../examples"
)
then
prints("ok")
else
prints("error")
end if
waitKey