isfile
Determines if the specified path is a file.
function isfile(path: string): booleanParameter
path- The path to the file.
Example
print(isfile("nonexistent.txt")) -- Output: false
writefile("file3.txt", "")
print(isfile("file3.txt")) -- Output: trueLast updated