Description
The DeleteDirectory
method is a member of the BaseFileSystem
class in the Sandbox namespace. This method is used to delete a directory from the file system. It can optionally delete the directory recursively, meaning it will also delete all subdirectories and files contained within the specified directory.
Usage
To use the DeleteDirectory
method, you need to provide the path to the directory you wish to delete as a string. Additionally, you can specify whether the deletion should be recursive by passing a boolean value. If true
, all contents within the directory will be deleted. If false
, only the directory itself will be deleted, and the operation will fail if the directory is not empty.
Example
// Example of using DeleteDirectory
BaseFileSystem fileSystem = new BaseFileSystem();
// Delete a directory non-recursively
fileSystem.DeleteDirectory("/path/to/directory", false);
// Delete a directory recursively
fileSystem.DeleteDirectory("/path/to/directory", true);