Categorygithub.com/uw-labs/straw
modulepackage
0.0.0-20220413125153-9e7a44bbbfda
Repository: https://github.com/uw-labs/straw.git
Documentation: pkg.go.dev

# README

Straw

go-doc

Straw is a filesystem abstraction for Go. It started life as simply supporting streams (no seek) but evolved to a more complete API over time.

Currently it supports local filesystem aws s3, and sftp as storage options.

WARNING : The API is not stable at this point.

For the subset of filesystem-like functionality that it does provide, it aims to remain close to the existing Go standard library types and concepts as possible.

# Packages

No description provided by the author
No description provided by the author
No description provided by the author

# Functions

No description provided by the author
No description provided by the author
No description provided by the author
Walk walks the file tree rooted at root, calling walkFn for each file or directory in the tree, including root.

# Variables

SkipDir is used as a return value from WalkFuncs to indicate that the directory named in the call is to be skipped.

# Interfaces

No description provided by the author
No description provided by the author
No description provided by the author

# Type aliases

WalkFunc is the type of the function called for each file or directory visited by Walk.