Deleting a Directory¶
To delete a directory from the Backendless file storage, it must be identified by the its path. Directories in the Backendless storage have the following URL structure:
https://api.backendless.com/<application id>/<REST API Key>/files/<path>
The API to delete a directory uses the <path>
element from the URL above.
Method:
¶
Future<int> Backendless.files.removeDirectory(String directoryPath, [String pattern, bool recursive]);
where:
Argument | Description |
---|---|
path |
path of the directory to delete. |
Example¶
Backendless.files.removeDirectory("pictures").then((response) { print("Directory has been deleted"); });