SkillAgentSearch skills...

S3fs

S3 FileSystem (fs.FS) implementation

Install / Use

/learn @jszwec/S3fs
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

s3fs Go Reference Go

Package s3fs provides a S3 implementation for Go1.16 filesystem interface.

Since S3 is a flat structure, s3fs simulates directories by using prefixes and "/" delim. ModTime on directories is always zero value.

SDK Versions

github.com/jszwec/s3fs uses aws sdk v1

github.com/jszwec/s3fs/v2 uses aws sdk v2

Example (SDK v1)

const bucket = "my-bucket"

s, err := session.NewSession()
if err != nil {
    log.Fatal(err)
}

s3fs := s3fs.New(s3.New(s), bucket)

// print out all files in s3 bucket.
_ = fs.WalkDir(s3fs, ".", func(path string, d fs.DirEntry, err error) error {
    if err != nil {
        return err
    }

    if d.IsDir() {
        fmt.Println("dir:", path)
        return nil
    }
    fmt.Println("file:", path)
    return nil
})

Installation

go get github.com/jszwec/s3fs

Requirements

  • Go1.16+

Related Skills

View on GitHub
GitHub Stars211
CategoryDevelopment
Updated2mo ago
Forks25

Languages

Go

Security Score

100/100

Audited on Jan 12, 2026

No findings