Skip to content

makefolder

Description:

This function demonstrates the usage of the makefolder API.

Example:

-- Make a new folder
local success = makefolder("NewFolderPath")

if success then
    print("Folder created successfully!")
else
    print("Failed to create folder.")
end