Baike.dev
All toolsAI codingTrendingOpen sourceNewsSubmit
Log in
< Back to tools
A

afero

> 编程语言
Open source

The Universal Filesystem Abstraction for Go

6.7K stars0 likes0 views
WebsiteGitHub

About

The Universal Filesystem Abstraction for Go

# Afero: The Universal Filesystem Abstraction for Go Afero is a filesystem abstraction library for Go that works as a drop-in replacement for the standard `os` package. Adopt it with minimal code changes, then swap any backend—local disk, in-memory, cloud, or archive—without touching your application logic. Two headline benefits: **testing becomes trivial** (replace the OS with a fast in-memory filesystem in one line, no disk cleanup required), and **your code stays portable** across any storage backend through a single `afero.Fs` interface. ## Why Afero? Afero elevates filesystem interaction beyond simple file reading and writing, offering solutions for testability, flexibility, and advanced architecture. **Key Features:** * **Universal API:** Write your code once. Run it against the local OS, in-memory storage, ZIP/TAR archives, or remote systems (SFTP, GCS). * **Ultimate Testability:** Utilize `MemMapFs`, a fully concurrent-safe, read/write in-memory filesystem. Write fast, isolated, and reliable unit tests without touching the physical disk or worrying about cleanup. * **Powerful Composition:** Afero's hidden superpower. Layer filesystems on top of each other to create sophisticated behaviors: * **Sandboxing:** Use `CopyOnWriteFs` to create temporary scratch spaces that isolate changes from the base filesystem. * **Caching:** Use `CacheOnReadFs` to automatically layer a fast cache (like memory) over a slow backend (like a network drive). * **Security Jails:** Use `BasePathFs` to restrict application access to a specific subdirectory (chroot). * **`os` Package Compatibility:** Afero mirrors the functions in the standard `os` package, making adoption and refactoring seamless. * **`io/fs` Compatibility:** Fully compatible with the Go standard library's `io/fs` interfaces. ## Installation ```bash go get github.com/spf13/afero ``` ```go import "github.com/spf13/afero" ``` ## Backend Reference | Type | Backend | Constructor | Description | Status | | :--- | :--- | :--- | :--- | :--- | | **Core** | **OsFs** | `afero.NewOsFs()` | Interacts with the real operating system filesystem. Use in production. | ✅ Official | | | **MemMapFs** | `afero.NewMemMapFs()` | A fast, atomic, concurrent-safe, in-memory filesystem. Ideal for testing. | ✅ Official | | **Composition** | **CopyOnWriteFs**| `afero.NewCopyOnWriteFs(base, overlay)` | A read-only base with a writable overlay. Ideal for sandboxing. | ✅ Official | | | **CacheOnReadFs**| `afero.NewCacheOnReadFs(base, cache, ttl)` | Lazily caches files from a slow base into a fast layer on first read. | ✅ Official | | | **BasePathFs** | `afero.NewBasePathFs(source, path)` | Restricts operations to a subdirectory (chroot/jail). | ✅ Official | | | **ReadOnlyFs** | `afero.NewReadOnlyFs(source)` | Provides a read-only view, preventing any modifications. | ✅ Official | | | **RegexpFs** | `afero.NewRegexpFs(source, regexp)` | Filters a filesystem, only showing files that match a regex. | ✅ Official | | **Utility** | **HttpFs** | `afero.NewHttpFs(source)` | Wraps any Afero filesystem to be served via `http.FileServer`. | ✅ Official | | **Archives** | **ZipFs** | `zipfs.New(zipReader)` | Read-only access to files within a ZIP archive. | ✅ Official | | | **TarFs** | `tarfs.New(tarReader)` | Read-only access to files within a TAR archive. | ✅ Official | | **Network** | **GcsFs** | `gcsfs.NewGcsFs(...)` | Google Cloud Storage backend. | ⚡ Experimental | | | **SftpFs** | `sftpfs.New(...)` | SFTP backend. | ⚡ Experimental | | **3rd Party Cloud** | **S3Fs** | [`fclairamb/afero-s3`](https://github.com/fclairamb/afero-s3) | Production-ready S3 backend built on official AWS SDK. | 3rd Party | | | **MinioFs** | [`cpyun/afero-minio`](https://github.com/cpyun/afero-minio) | MinIO object storage backend with S3 compatibility. | 3rd Party | | | **DriveFs** | [`fclairamb/afero-gdrive`](https://github.com/fclairamb/afero-gdrive) | Google Drive backend with streaming support. | 3rd Party | | | **DropboxFs** | [`fclairamb/afero-dropbox`](https://github.com/fclairamb/afero-dropbox) | Dropbox backend with streaming support. | 3rd Party | | **3rd Party Specialized** | **GitFs** | [`tobiash/go-gitfs`](https://github.com/tobiash/go-gitfs) | Git repository filesystem (read-only, Afero compatible). | 3rd Party | | | **DockerFs** | [`unmango/aferox`](https://github.com/unmango/aferox) | Docker container filesystem access. | 3rd Party | | | **GitHubFs** | [`unmango/aferox`](https://github.com/unmango/aferox) | GitHub repository and releases filesystem. | 3rd Party | | | **FilterFs** | [`unmango/aferox`](https://github.com/unmango/aferox) | Filesystem filtering with predicates. | 3rd Party | | | **IgnoreFs** | [`unmango/aferox`](https://github.com/unmango/aferox) | .gitignore-aware filtering filesystem. | 3rd Party | | | **FUSEFs** | [`JakWai01/sile-fystem`](https://github.com/JakWai01/sile-fystem) | Generic FUSE implementation using any Afero backend. | 3rd Party | ## Quick Start: The Power of Abstraction The core of Afero is the `afero.Fs` interface. By designing your functions to accept this interface rather than calling `os.*` functions directly, your code instantly becomes more flexible and testable. ### 1. Refactor Your Code Change functions that rely on the `os` package to accept `afero.Fs`. ```go // Before: Coupled to the OS and difficult to test // func ProcessConfiguration(path string) error { // data, err := os.ReadFile(path) // ... // } import "github.com/spf13/afero" // After: Decoupled, flexible, and testable func ProcessConfiguration(fs afero.Fs, path string) error { // Use Afero utility functions which mirror os/ioutil data, err := afero.ReadFile(fs, path) // ... process the data return err } ``` ### 2. Usage in Production In your production environment, inject the `OsFs` backend, which wraps the standard operating system calls. ```go func main() { // Use the real OS filesystem AppFs := afero.NewOsFs() ProcessConfiguration(AppFs, "/etc/myapp.conf") } ``` ### 3. Usage in Testing Steps 1 and 2 represent the entire production footprint: accept `afero.Fs` instead of calling `os` directly, then inject `OsFs` at the call site. That's it. Swap `OsFs` for `MemMapFs` and the whole thing runs in memory, with no disk access and nothing to clean up: ```go func TestProcessConfiguration(t *testing.T) { // Use the in-memory filesystem AppFs := afero.NewMemMapFs() // Pre-populate the memory filesystem for the test configPath := "/test/config.json" afero.WriteFile(AppFs, configPath, []byte(`{"feature": true}`), 0644) // Run the test entirely in memory err := ProcessConfiguration(AppFs, configPath) if err != nil { t.Fatal(err) } } ``` ## Afero's Superpower: Composition Afero's most unique feature is its ability to combine filesystems. This allows you to build complex behaviors out of simple components, keeping your application logic clean. ### Example 1: Sandboxing with Copy-on-Write **Problem:** You want integration tests that exercise code against real configuration files without any risk of accidentally modifying them. Or you need to let untrusted code "modify" system files in a fully contained environment. All writes are captured in the in-memory overlay; the base is never touched: ```go // 1. The base layer is the real OS, made read-only for safety. baseFs := afero.NewReadOnlyFs(afero.NewOsFs()) // 2. The overlay layer is a temporary in-memory filesystem for changes. overlayFs := afero.NewMemMapFs() // 3. Combine them. Reads fall through to the base; writes only hit the overlay. sandboxFs := afero.NewCopyOnWriteFs(baseFs, overlayFs) // The application can now "modify" /etc/hosts, but the changes are isolated in memory. afero.WriteFile(sandboxFs, "/etc/hosts", []byte("127.0.0.1 sandboxed-app"), 0644) // The real /etc/hosts on disk is untouched. ``` ### Example 2: Caching a Slow Filesystem **Problem:** Your application reads the same files repeatedly from a slow backend network storage, cloud, SFTP. You want instant repeated reads without rewriting a single line of file-access code. Layer a fast in-memory cache in front; the first read fetches and caches, every subsequent read is instant: ```go import "time" // Assume 'remoteFs' is a slow backend (e.g., SFTP or GCS) var remoteFs afero.Fs // 'cacheFs' is a fast in-memory backend cacheFs := afero.NewMemMapFs() // Create the caching layer. Cache items for 5 minutes upon first read. cachedFs := afero.NewCacheOnReadFs(remoteFs, cacheFs, 5*time.Minute) // The first read is slow (fetches from remote, then caches) data1, _ := afero.ReadFile(cachedFs, "data.json") // The second read is instant (serves from memory cache) data2, _ := afero.ReadFile(cachedFs, "data.json") ``` ### Example 3: Security Jails (chroot) **Problem:** You need to expose filesystem access to a plugin, template engine, or user-submitted process but directory traversal must be impossible. It should only ever see a single rooted directory. ```go osFs := afero.NewOsFs() // Create a filesystem rooted at /home/user/public // The application cannot access anything above this directory. jailedFs := afero.NewBasePathFs(osFs, "/home/user/public") // To the application, this is reading "/" // In reality, it's reading "/home/user/public/" dirInfo, err := afero.ReadDir(jailedFs, "/") // Attempts to access parent directories fail _, err = jailedFs.Open("../secrets.txt") // Returns an error ``` ## Real-World Use Cases ### Build Cloud-Agnostic Applications Write applications that seamlessly work with different storage backends: ``` … ``` ### Treating Archives as Filesystems ZIP and TAR archives are directories in disguise. Afero exposes them as a standard `afero.Fs`—which means **any code that already accepts `afero.Fs` works unchanged against an archive**, with no extraction, no temp directory, and no cleanup required. This is particularly useful when: - Processing uploaded ZIP files in a web handler without writing decompressed content to disk - Reading fixture data bundled into a binary without `//go:embed` - Writing archive inspection or transformation tools that reuse the same traversal logic as your real filesystem code - Running tests against a canned, read-only snapshot of a directory tree shipped as a `.zip` ```go import ( "archive/zip" "github.com/spf13/afero/zipfs" ) // Open any .zip — from disk, an HTTP response body, or memory zipFile, _ := zip.OpenReader("bundle.zip") defer zipFile.Close() // Treat the archive as a filesystem — no extraction needed archiveFS := zipfs.New(&zipFile.Reader) // The same code that works with OsFs or MemMapFs works here unchanged content, err := afero.ReadFile(archiveFS, "docs/readme.md") entries, err := afero.ReadDir(archiveFS, "configs/") ``` ### Serving Any Filesystem over HTTP Use `HttpFs` to expose any Afero filesystem—even one created dynamically in memory—through a standard Go web server. ```go import ( "net/http" "github.com/spf13/afero" ) func main() { memFS := afero.NewMemMapFs() afero.WriteFile(memFS, "index.html", []byte("

Hello from Memory!

"), 0644) // Wrap the memory filesystem to make it compatible with http.FileServer. httpFS := afero.NewHttpFs(memFS) http.Handle("/", http.FileServer(httpFS.Dir("/"))) http.ListenAndServe(":8080", nil) } ``` ### Testing Made Simple One of Afero's greatest strengths is making filesystem-dependent code easily testable: ``` … ``` **Benefits of testing with Afero:** - ⚡ **Fast** - No disk I/O, tests run in memory - **Reliable** - Each test starts with a clean slate - **No cleanup** - Memory is automatically freed - **Safe** - Can't accidentally modify real files - **Parallel** - Tests can run concurrently without conflicts ## Afero vs. `io/fs` (Go 1.16+) Go 1.16 introduced the `io/fs` package, which provides a stand

GitHub Issues· 0 open

View all on GitHub

No open issues yet, or sync has not completed.

Highlights

  • •Universal API: Write your code once. Run it against the local OS, in-memory storage, ZIP/TAR archives, or remote systems (SFTP, GCS).
  • •Powerful Composition: Afero's hidden superpower. Layer filesystems on top of each other to create sophisticated behaviors:
  • •Sandboxing: Use CopyOnWriteFs to create temporary scratch spaces that isolate changes from the base filesystem.
  • •Caching: Use CacheOnReadFs to automatically layer a fast cache (like memory) over a slow backend (like a network drive).
  • •Security Jails: Use BasePathFs to restrict application access to a specific subdirectory (chroot).
  • •os Package Compatibility: Afero mirrors the functions in the standard os package, making adoption and refactoring seamless.
  • •io/fs Compatibility: Fully compatible with the Go standard library's io/fs interfaces.
  • •Processing uploaded ZIP files in a web handler without writing decompressed content to disk
  • •Reading fixture data bundled into a binary without //go:embed
  • •Writing archive inspection or transformation tools that reuse the same traversal logic as your real filesystem code

> Tags

Gocompressionfilesystemfsgo

No comments yet. Be the first to share.

> Details

PublishedAug 1, 2026
UpdatedSep 17, 2026
Category编程语言
PricingOpen source

> Related tools

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言