Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns whether a path resolved inside the workspace exists and is a directory.
isfolder(path: string): boolean
path
string
isFolder
boolean
local folderPath = "examples" local filePath = "examples/config.json" makefolder(folderPath) writefile(filePath, "{}") print(isfolder(folderPath)) print(isfolder(filePath)) print(isfolder("examples/missing"))