-b, --bind <addr>... Specify bind address
-p, --port <port> Specify port to listen on [default: 5000]
--path-prefix <path> Specify a path prefix
- --hidden <value> Hide directories from directory listings, separated by `,`
+ --hidden <value> Hide paths from directory listings, separated by `,`
-a, --auth <rule>... Add auth for path
--auth-method <value> Select auth method [default: digest] [possible values: basic, digest]
-A, --allow-all Allow all operations
- Account `designer:pass2` can upload/delete/view/download any files/folders in the `ui` folder.
-### Hide
+### Hidden Paths
-Dufs supports hiding directories/files via option `--hidden`.
+Dufs supports hiding paths from directory listings via option `--hidden`.
```
dufs --hidden .git,.DS_Store
.arg(
Arg::new("hidden")
.long("hidden")
- .help("Hide directories from directory listings, separated by `,`")
+ .help("Hide paths from directory listings, separated by `,`")
.value_name("value"),
)
.arg(