mergefs
mergefs copied to clipboard
go package to chain fs.FS filesystems together (go1.16+)
Results
2
mergefs issues
Sort by
recently updated
recently updated
newest added
this behaviour could potentially break someone's use of the library... e.g. if they have one unreliable filesytem, this error might prevent you from ever reaching the correct filesystem. Edit: I...
If any of the filesystems in your chain return an error, you skip. Probably better to only skip in the case of `os.ErrNotExist`: ```go // Open opens the named file....