It provides an afero filesystem implementation of an S3 backend.
This was created to provide a backend to the ftpserver but can definitely be used in any other code.
I'm very opened to any improvement through issues or pull-request that might lead to a better implementation or even better testing.
Note: Errors handling is skipped for brevity but you definitely have to handle it.
import(
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws/session"
s3 "github.com/fclairamb/afero-s3"
)
func main() {
// You create a session
sess, _ := session.NewSession(&aws.Config{
Region: aws.String(region),
Credentials: credentials.NewStaticCredentials(keyID, secretAccessKey, ""),
})
// Initialize the file system
s3Fs := s3.NewFs(bucket, sess)
// And do your thing
file, _ := fs.OpenFile("file.txt", os.O_WRONLY, 0777)
file.WriteString("Hello world !")
file.Close()
}
The initial code (which was massively rewritten) comes from:
487 commits
352 commits
112 commits
107 commits
Go
99.9%
It provides an afero filesystem implementation of an S3 backend.
This was created to provide a backend to the ftpserver but can definitely be used in any other code.
I'm very opened to any improvement through issues or pull-request that might lead to a better implementation or even better testing.
Note: Errors handling is skipped for brevity but you definitely have to handle it.
import(
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws/session"
s3 "github.com/fclairamb/afero-s3"
)
func main() {
// You create a session
sess, _ := session.NewSession(&aws.Config{
Region: aws.String(region),
Credentials: credentials.NewStaticCredentials(keyID, secretAccessKey, ""),
})
// Initialize the file system
s3Fs := s3.NewFs(bucket, sess)
// And do your thing
file, _ := fs.OpenFile("file.txt", os.O_WRONLY, 0777)
file.WriteString("Hello world !")
file.Close()
}
The initial code (which was massively rewritten) comes from:
487 commits
352 commits
112 commits
107 commits
Go
99.9%