Delete Files
Deleting a Single File
Syntax
exaDrive.deleteFile(directoryPath)Example
exaDrive.deleteFile('/myapp1/images/file1000.png')
.then((res) => {
console.log(res.data);
})
.catch((error) => {
console.error('Failed to delete file:', error);
});Response Structure
Response Fields
Deleting Multiple Files
Advanced Usage
Batch Deletion with Concurrency Control
Deletion with Confirmation
Best Practices
Last updated