Dufs is a distinctive utility file server that supports static serving, uploading, searching, accessing control, webdav...
-
+
## Features
## Examples
-Serve current working directory
+Serve current working directory in readonly mode
```
dufs
```
-Allow all operations like upload/delete/search...
+Allow all operations like upload/delete/search/create/edit...
```
dufs -A
List/search directory contents
```
-curl http://127.0.0.1:5000?simple # output name only, just like `ls -1`
-curl http://127.0.0.1:5000?json # output name/mtime/type/size and other information in json format
+curl http://127.0.0.1:5000?simple # output names only, just like `ls -1`
+curl http://127.0.0.1:5000?json # output paths in json format
curl http://127.0.0.1:5000?q=Dockerfile&simple # search for files, just like `find -name Dockerfile`
```