Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

billy.Filesystem does not implement fs.FS #121

Open
pjebs opened this issue Mar 19, 2025 · 1 comment
Open

billy.Filesystem does not implement fs.FS #121

pjebs opened this issue Mar 19, 2025 · 1 comment

Comments

@pjebs
Copy link

pjebs commented Mar 19, 2025

I'm using github.com/go-git/go-billy/v6 v6.0.0-20250303095825-24047e466509

import "io/fs"
import "github.com/go-git/go-billy/v6/memfs"

memfs := memfs.New()

fs.WalkDir(memfs, ".", func(path string, d fs.DirEntry, err error) error {
		if err != nil {
			panic(err)
		}
		fmt.Println(path)
		return nil
	})

I get this compile-time error:

cannot use memfs (variable of interface type billy.Filesystem) as fs.FS value in argument to fs.WalkDir: billy.Filesystem does not implement fs.FS (wrong type for method Open)
		have Open(string) (billy.File, error)
		want Open(string) (fs.File, error)

More Info: https://bitfieldconsulting.com/posts/filesystems

@pjbgf
Copy link
Member

pjbgf commented Mar 19, 2025

The current support for WalkDir is based on the util package. Improvements in user experience around the use of fs.FS are being tracked on #101.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants