File system abstraction with access management This is the Local File System adapter for the core interface
API provides common file operations for some folder on local drive. Any operations outside of the folder will be blocked. Also, it possible to configure a custom policy for read/write operations.
Can be used as backend for Webix File Manager https://webix.com/filemanager
import (
"github.com/xbsoftware/wfs-local"
)
fs, err := wfs.NewLocalDrive("./sandbox", nil)
MIT