WebDAV filesystem
$ davfs
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... |
$ 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
MIT
Yasuhiro Matsumoto (a.k.a mattn)