isfile
function isfile(path: string): booleanParameter
Example
print(isfile("nonexistent.txt")) -- Output: false
writefile("file3.txt", "")
print(isfile("file3.txt")) -- Output: trueLast updated
function isfile(path: string): booleanprint(isfile("nonexistent.txt")) -- Output: false
writefile("file3.txt", "")
print(isfile("file3.txt")) -- Output: trueLast updated