IOA.delete

Deletes the specified folder or file.

If a folder is specified, deletes all the files in the folder, including sub-directories.

IOA.delete(path);

Arguments

path. (string) The absolute path of the folder or file.

Return value

A promise that will be fulfilled with no arguments.

Example

Copy code
IOA.delete(TC.outputDir + "mydir").then(function(){
  TCA.done();
}).catch(function (error) {
  TCA.doneWithError(error);
});