Compare commits

...

2 Commits

Author SHA1 Message Date
56165c0b76
Fixed a mistake in README 2025-05-20 10:12:18 +02:00
b1ee452890
Updated readme 2025-05-20 10:11:32 +02:00

View File

@ -30,9 +30,21 @@ Currently, there is no installer implemented.
## Usage
`icfs <FUSE arguments> [target directory]`
```
icfs <FUSE arguments> [target directory] [path to permanent permission database]
```
The filesystem will be mounted over the target directory, and ask user permission every time a file in that directory is opened.
The filesystem will be mounted over the target directory, and ask user permission every time a file in that directory is opened. We highly recommend adding `-o default_permissions` to increase performance and add an additional security layer.
### Development build
Execute this command in the root directory of this project:
```
env PATH="$(realpath ./build):$PATH" build/icfs <FUSE arguments> [target directory] [path to permanent permission database]
```
The `env PATH="$(realpath ./build):$PATH"` adds the access dialogue program to PATH, allowing ICFS to call it seamlessly.
## Docs