isfolder Description: This function demonstrates the usage of the isfolder API. Example: -- Check if a folder exists local exists = isfolder("somefolder") if exists then print("Folder exists") else print("Folder does not exist") end