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 regular file.
isfile(path: string): boolean
path
string
isFile
boolean
local folderPath = "examples" local filePath = "examples/config.json" makefolder(folderPath) writefile(filePath, "{}") print(isfile(filePath)) print(isfile(folderPath)) print(isfile("examples/missing.json"))