dirExists()
ディレクトリが存在すれば true を返します。
文法:
variable
= dirExists(
path
)
用例:
if
dirExists(
"../../examples"
)
then
prints("発見")
else
prints("エラー")
end if
waitKey