Deletes the folder at the specified path.
function delfolder(path: string): ()
path - Path to the folder you will delete.
path
makefolder("folder3") print(isfolder("folder3")) -- Output: true delfolder("folder3") print(isfolder("folder3")) -- Output: false
Last updated 2 months ago