Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

github.com/deependujha/go-fsspec

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/deependujha/go-fsspec

  • v0.0.1
  • Source
  • Go
  • Socket score

Version published
Created
Source

go-fsspec

go fsspec


Idea

  • A simple yet powerful, library to manage files and directories in cloud storage systems (AWS S3, Google Cloud Storage, Azure Blob Storage, etc.).

Features

  • We will have an abstractCloudStorage interface that will be implemented by each storage system.

  • abstractCloudStorage will have these methods:

    • init(provider string, cloudConfig map[string]string) error
    • exists(path string) (bool, error)
    • makeDirectory(path string) error
    • listDirectory(path string) ([]string, error) / ls(path string) ([]string, error)
    • downloadFile(path string, destination string) error
    • uploadFile(path string, source string) error
    • downloadDirectory(path string, destination string) error
    • uploadDirectory(path string, source string) error
    • deleteFile(path string) error
    • deleteDirectory(path string) error
  • Each storage system will have its own implementation of abstractCloudStorage interface.


[!CAUTION] Features like, streaming or cross-cloud operations will not be prioritized (for now).

FAQs

Package last updated on 19 Sep 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc