Determines if the specified path is a folder.
function isfolder(path: string): boolean
path - The path to check.
path
writefile("file7.txt", "") makefolder("folder2") print(isfolder("file7.txt")) -- Output: false print(isfolder("folder2")) -- Output: true
Last updated 2 months ago