mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
filer: recursive deletion optionally ignoring any errors
parent
55005a777b
commit
5fc8d830b1
|
@ -71,5 +71,9 @@ curl "http://localhost:8888/javascript/?pretty=y&lastFileName=new_name.js&limit
|
|||
## Delete a folder
|
||||
|
||||
```bash
|
||||
// recursively delete all files and folders under a path
|
||||
> curl -X DELETE http://localhost:8888/path/to/dir?recursive=true
|
||||
// recursively delete everything, ignoring any recursive error
|
||||
> curl -X DELETE http://localhost:8888/path/to/dir?recursive=true&ignoreRecursiveError=true
|
||||
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue