Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/toowoxx/go-lib-fs
Common file system utilities used across Go projects
https://github.com/toowoxx/go-lib-fs
Last synced: 11 days ago
JSON representation
Common file system utilities used across Go projects
- Host: GitHub
- URL: https://github.com/toowoxx/go-lib-fs
- Owner: toowoxx
- License: bsd-2-clause
- Created: 2021-03-16T09:32:13.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-08T09:56:23.000Z (over 2 years ago)
- Last Synced: 2024-11-07T14:13:50.372Z (2 months ago)
- Language: Go
- Size: 21.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# go-lib-fs
Common file system utilities used across Go projects
## Usage
Add the dependency:
```bash
go get github.com/toowoxx/go-lib-fs
```Use in your code:
```go
import (
// ...
"github.com/toowoxx/go-lib-fs/fs"
// ...
)
```## License
```
BSD 2-Clause LicenseCopyright (c) 2021, Toowoxx IT GmbH
All rights reserved.Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.```