README
¶
go-billy-desfacer 


go-billy filesystem that wraps afero. It lets use afero filesystems with software that expects go-billy, for example with go-git.
Installation
go get gopkg.in/jfontan/go-billy-desfacer.v0
Example of use
package main
import (
"fmt"
"github.com/spf13/afero"
"gopkg.in/jfontan/go-billy-desfacer.v0"
)
func main() {
// wrap an afero filesystem to billy interface
aferofs := afero.NewMemMapFs()
billyfs := desfacer.New(aferofs)
// create a file with billy interface
billyfile, err := billyfs.Create("file")
if err != nil {
panic(err)
}
_, err = billyfile.Write([]byte("some data"))
if err != nil {
panic(err)
}
_ = billyfile.Close()
// read file directly in afero filesystem
aferofile, err := aferofs.Open("file")
if err != nil {
panic(err)
}
buf := make([]byte, 32)
n, err := aferofile.Read(buf)
if err != nil {
panic(err)
}
_ = aferofile.Close()
fmt.Println(string(buf[:n]))
}
Notes
- The functions
Symlink
andReadlink
are not implemented as afero does not have that functionality.
The name
"desfacer" means "to undo" or "to unmake" in Galician and old Spanish.
License
Apache License Version 2.0, see LICENSE.
Documentation
¶
Index ¶
- Variables
- type FS
- func (f *FS) Chroot(path string) (billy.Filesystem, error)
- func (f *FS) Create(filename string) (billy.File, error)
- func (f *FS) Join(elem ...string) string
- func (f *FS) Lstat(filename string) (os.FileInfo, error)
- func (f *FS) MkdirAll(filename string, perm os.FileMode) error
- func (f *FS) Open(filename string) (billy.File, error)
- func (f *FS) OpenFile(filename string, flag int, perm os.FileMode) (billy.File, error)
- func (f *FS) ReadDir(path string) ([]os.FileInfo, error)
- func (f *FS) Readlink(link string) (string, error)
- func (f *FS) Remove(filename string) error
- func (f *FS) Rename(oldpath string, newpath string) error
- func (f *FS) Root() string
- func (f *FS) Stat(filename string) (os.FileInfo, error)
- func (f *FS) Symlink(target string, link string) error
- func (f *FS) TempFile(dir string, prefix string) (billy.File, error)
- type File
- func (f *File) Close() error
- func (f *File) Lock() error
- func (f *File) Name() string
- func (f *File) Read(p []byte) (n int, err error)
- func (f *File) ReadAt(p []byte, off int64) (n int, err error)
- func (f *File) Seek(offset int64, whence int) (int64, error)
- func (f *File) Truncate(size int64) error
- func (f *File) Unlock() error
- func (f *File) Write(p []byte) (n int, err error)
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrNotImplemented is returned when the function is not implemented. ErrNotImplemented = fmt.Errorf("functionality not implemented") )
Functions ¶
This section is empty.
Types ¶
type FS ¶
type FS struct {
// contains filtered or unexported fields
}
type File ¶
type File struct {
// contains filtered or unexported fields
}
File wraps an afero.File.
Click to show internal directories.
Click to hide internal directories.