Directory_delete - hpgDesigns/hpgdesigns-dev.io GitHub Wiki

Description

Deletes the directory with the given name.

Parameters

Parameter Data Type Description
dname string The name of the directory to delete.

Return Values

integer: Returns whether the directory deletion was successful or not. Reasons for failure may include the directory already existing and the path being invalid.

Example Call

// Demonstrates deleting a folder in the working directory called "archivedata"
directory_delete(working_directory + "archivedata");

NOTOC