https://github.com/mattn/davfs
https://github.com/mattn/davfs
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mattn/davfs
- Owner: mattn
- Created: 2015-12-13T12:49:11.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-04-19T17:12:20.000Z (over 8 years ago)
- Last Synced: 2025-08-14T11:45:12.863Z (5 months ago)
- Language: Go
- Size: 7.81 KB
- Stars: 92
- Watchers: 10
- Forks: 12
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# davfs
WebDAV filesystem
## Usage
```
$ davfs
```
## Supported Drivers
|Driver |Options to be specified |
|----------|----------------------------------|
|file |-driver=file -source=/path/to/root|
|memory |-driver=memory |
|sqlite3 |-driver=sqlite3 -source=fs.db |
|mysql |-driver=mysql -source=blah... |
|postgresql|-driver=postgres -source=blah... |
## Installation
```
$ go get github.com/mattn/davfs/cmd/davfs
```
At the first time, you need to create filesystem for database drivers you specified like below.
```
$ davfs -driver=sqlite3 -source=fs.db -create
```
## License
MIT
## Author
Yasuhiro Matsumoto (a.k.a mattn)