Versions in this module Expand all Collapse all v1 v1.0.0 Oct 23, 2020 Changes in this version + func CopyAll(vfs FileSystem, src, dest string, opt ...Options) error + type Dir string + func (d Dir) Open(name string) (File, error) + func (d Dir) Readlink(name string) (string, error) + type File interface + Readdir func(count int) ([]os.FileInfo, error) + Stat func() (os.FileInfo, error) + type FileSystem interface + Open func(name string) (File, error) + Readlink func(name string) (string, error) + func NewVFS(httpfs http.FileSystem) FileSystem + type Options struct + AddPermission os.FileMode + OnSymlink func(src string) SymlinkAction + Skip func(src string) (bool, error) + Sync bool + type SymlinkAction int + const Shallow + const Skip + type VFS struct + FileSystem http.FileSystem + func (v *VFS) Open(name string) (File, error) + func (v *VFS) Readlink(name string) (string, error)