1
0
Fork 0
No description
  • Go 99%
  • Makefile 0.6%
  • Shell 0.4%
Find a file
Daniel Baumann 55b3c0b4d7
Releasing fastforward version 6.0.0~alpha.1-2~ffwd13+u1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2026-05-31 20:03:40 +02:00
.github/workflows Merging upstream version 6.0.0~alpha.1. 2026-05-31 18:40:07 +02:00
debian Releasing fastforward version 6.0.0~alpha.1-2~ffwd13+u1. 2026-05-31 20:03:40 +02:00
embedfs Merging upstream version 6.0.0~alpha.1. 2026-05-31 18:40:07 +02:00
helper Merging upstream version 6.0.0~alpha.1. 2026-05-31 18:40:07 +02:00
internal/test Merging upstream version 6.0.0~alpha.1. 2026-05-31 18:40:07 +02:00
memfs Merging upstream version 6.0.0~alpha.1. 2026-05-31 18:40:07 +02:00
osfs Merging upstream version 6.0.0~alpha.1. 2026-05-31 18:40:07 +02:00
scripts Merging upstream version 6.0.0~alpha.1. 2026-05-31 18:40:07 +02:00
test Merging upstream version 6.0.0~alpha.1. 2026-05-31 18:40:07 +02:00
util Merging upstream version 6.0.0~alpha.1. 2026-05-31 18:40:07 +02:00
.gitignore Adding upstream version 6~git20260226.45bd095. 2026-03-13 05:00:34 +01:00
.golangci.yaml Adding upstream version 6~git20260226.45bd095. 2026-03-13 05:00:34 +01:00
.renovaterc.json5 Adding upstream version 6~git20260226.45bd095. 2026-03-13 05:00:34 +01:00
fs.go Adding upstream version 6~git20260226.45bd095. 2026-03-13 05:00:34 +01:00
fs_test.go Adding upstream version 6~git20260226.45bd095. 2026-03-13 05:00:34 +01:00
go.mod Merging upstream version 6.0.0~alpha.1. 2026-05-31 18:40:07 +02:00
go.sum Merging upstream version 6.0.0~alpha.1. 2026-05-31 18:40:07 +02:00
LICENSE Adding upstream version 6~git20260226.45bd095. 2026-03-13 05:00:34 +01:00
Makefile Merging upstream version 6.0.0~alpha.1. 2026-05-31 18:40:07 +02:00
README.md Merging upstream version 6.0.0~alpha.1. 2026-05-31 18:40:07 +02:00

go-billy GoDoc Test OpenSSF Scorecard

The missing interface filesystem abstraction for Go. Billy implements an interface based on the os standard library, allowing to develop applications without dependency on the underlying storage. Makes it virtually free to implement mocks and testing over filesystem operations.

Billy was born as part of go-git/go-git project.

Installation

import "github.com/go-git/go-billy/v6"

Usage

Billy exposes filesystems using the Filesystem interface. Each filesystem implementation gives you a New method, whose arguments depend on the implementation itself, that returns a new Filesystem.

The following example caches in memory all readable files in a directory from any billy's filesystem implementation.

func LoadToMemory(origin billy.Filesystem, path string) (*memory.Memory, error) {
	memory := memory.New()

	files, err := origin.ReadDir("/")
	if err != nil {
		return nil, err
	}

	for _, file := range files {
		if file.IsDir() {
			continue
		}

		src, err := origin.Open(file.Name())
		if err != nil {
			return nil, err
		}

		dst, err := memory.Create(file.Name())
		if err != nil {
			return nil, err
		}

		if _, err = io.Copy(dst, src); err != nil {
			return nil, err
		}

		if err := dst.Close(); err != nil {
			return nil, err
		}

		if err := src.Close(); err != nil {
			return nil, err
		}
	}

	return memory, nil
}

Why billy?

The library billy deals with storage systems and Billy is the name of a well-known, IKEA bookcase. That's it.

License

Apache License Version 2.0, see LICENSE