func NewNameSpace() NameSpace { … }
type emptyVFS …
func (e *emptyVFS) Open(path string) (ReadSeekCloser, error) { … }
func (e *emptyVFS) Stat(path string) (os.FileInfo, error) { … }
func (e *emptyVFS) Lstat(path string) (os.FileInfo, error) { … }
func (e *emptyVFS) ReadDir(path string) ([]os.FileInfo, error) { … }
func (e *emptyVFS) String() string { … }
func (e *emptyVFS) RootType(path string) RootType { … }
func (e *emptyVFS) Name() string { … }
func (e *emptyVFS) Size() int64 { … }
func (e *emptyVFS) Mode() os.FileMode { … }
func (e *emptyVFS) ModTime() time.Time { … }
func (e *emptyVFS) IsDir() bool { … }
func (e *emptyVFS) Sys() interface{ … }