Watch
1
0
Fork
You've already forked golang-github-go-git-go-billy-v6
0
No description
  • Go 99.1%
  • Makefile 0.6%
  • Shell 0.3%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Daniel Baumann dd5cfe54e7
Releasing debian version 6.0.0~alpha.2-1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2026-07-28 18:44:20 +02:00
.github/workflows Merging upstream version 6.0.0~alpha.1. 2026-05-31 18:24:16 +02:00
debian Releasing debian version 6.0.0~alpha.2-1. 2026-07-28 18:44:20 +02:00
embedfs Merging upstream version 6.0.0~alpha.2. 2026-07-28 18:44:04 +02:00
helper Merging upstream version 6.0.0~alpha.1. 2026-05-31 18:24:16 +02:00
internal/test Merging upstream version 6.0.0~alpha.1. 2026-05-31 18:24:16 +02:00
memfs Merging upstream version 6.0.0~alpha.2. 2026-07-28 18:44:04 +02:00
osfs Merging upstream version 6.0.0~alpha.2. 2026-07-28 18:44:04 +02:00
scripts Merging upstream version 6.0.0~alpha.1. 2026-05-31 18:24:16 +02:00
test Merging upstream version 6.0.0~alpha.1. 2026-05-31 18:24:16 +02:00
util Merging upstream version 6.0.0~alpha.1. 2026-05-31 18:24:16 +02:00
.gitignore Adding upstream version 6~git20260226.45bd095. 2026-03-10 18:38:21 +01:00
.golangci.yaml Adding upstream version 6~git20260226.45bd095. 2026-03-10 18:38:21 +01:00
.renovaterc.json5 Adding upstream version 6~git20260226.45bd095. 2026-03-10 18:38:21 +01:00
fs.go Merging upstream version 6.0.0~alpha.2. 2026-07-28 18:44:04 +02:00
fs_test.go Adding upstream version 6~git20260226.45bd095. 2026-03-10 18:38:21 +01:00
go.mod Merging upstream version 6.0.0~alpha.2. 2026-07-28 18:44:04 +02:00
go.sum Merging upstream version 6.0.0~alpha.2. 2026-07-28 18:44:04 +02:00
LICENSE Adding upstream version 6~git20260226.45bd095. 2026-03-10 18:38:21 +01:00
Makefile Merging upstream version 6.0.0~alpha.2. 2026-07-28 18:44:04 +02:00
README.md Merging upstream version 6.0.0~alpha.1. 2026-05-31 18:24:16 +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