MyNixOS website logo
Description

Streamlined Interface to Interact with Cloud Storage Platforms.

A unified interface for simplifying cloud storage interactions, including uploading, downloading, reading, and writing files, with functions for both 'Google Drive' (<https://www.google.com/drive/>) and 'Amazon S3' (<https://aws.amazon.com/s3/>).

cloudfs cloudfs website

CRAN status R-CMD-check

cloudfs is an R package developed by Gradient Metrics that offers a unified interface for simplifying cloud storage interactions. cloudfs supports uploading, downloading, reading, and writing files for both Google Drive and Amazon S3.

Installation

# from CRAN
install.packages("cloudfs")

# from GitHub
remotes::install_github("g6t/cloudfs")

Key Features

  1. Relative path simplicity

    Use paths relative to your project's main cloud folder.

    cloud_drive_download("raw_data/transactions.xlsx")
    
  2. Unified interface for Google Drive and S3

    Downloading from S3? The process is just as straightforward.

    cloud_s3_download("raw_data/transactions.xlsx")
    
  3. Extension-aware functions

    The package automatically selects the right read or write function based on the file extension, simplifying your interactions.

    cloud_s3_write(glmnet_model, "models/glmnet.rds")
    

    If you don't like the default function, you can use a different one by explicitly calling it.

    cloud_s3_write(glmnet_model, "models/glmnet.rds", fun = readr::write_rds)
    
  4. Effortless cloud navigation

    Open folders in browser

    cloud_drive_browse("plots")
    

    or list contents in console.

    cloud_s3_ls("data")
    
  5. Bulk file management

    Easily retrieve all data from a folder in one go

    all_data <- 
      cloud_s3_ls("data") %>%
      cloud_s3_read_bulk()
    

    or push multiple files to the cloud at once.

    cloud_local_ls("plots") %>% cloud_drive_upload_bulk()
    
Metadata

Version

0.1.3

License

Unknown

Platforms (75)

    Darwin
    FreeBSD
    Genode
    GHCJS
    Linux
    MMIXware
    NetBSD
    none
    OpenBSD
    Redox
    Solaris
    WASI
    Windows
Show all
  • aarch64-darwin
  • aarch64-genode
  • aarch64-linux
  • aarch64-netbsd
  • aarch64-none
  • aarch64_be-none
  • arm-none
  • armv5tel-linux
  • armv6l-linux
  • armv6l-netbsd
  • armv6l-none
  • armv7a-darwin
  • armv7a-linux
  • armv7a-netbsd
  • armv7l-linux
  • armv7l-netbsd
  • avr-none
  • i686-cygwin
  • i686-darwin
  • i686-freebsd
  • i686-genode
  • i686-linux
  • i686-netbsd
  • i686-none
  • i686-openbsd
  • i686-windows
  • javascript-ghcjs
  • loongarch64-linux
  • m68k-linux
  • m68k-netbsd
  • m68k-none
  • microblaze-linux
  • microblaze-none
  • microblazeel-linux
  • microblazeel-none
  • mips-linux
  • mips-none
  • mips64-linux
  • mips64-none
  • mips64el-linux
  • mipsel-linux
  • mipsel-netbsd
  • mmix-mmixware
  • msp430-none
  • or1k-none
  • powerpc-netbsd
  • powerpc-none
  • powerpc64-linux
  • powerpc64le-linux
  • powerpcle-none
  • riscv32-linux
  • riscv32-netbsd
  • riscv32-none
  • riscv64-linux
  • riscv64-netbsd
  • riscv64-none
  • rx-none
  • s390-linux
  • s390-none
  • s390x-linux
  • s390x-none
  • vc4-none
  • wasm32-wasi
  • wasm64-wasi
  • x86_64-cygwin
  • x86_64-darwin
  • x86_64-freebsd
  • x86_64-genode
  • x86_64-linux
  • x86_64-netbsd
  • x86_64-none
  • x86_64-openbsd
  • x86_64-redox
  • x86_64-solaris
  • x86_64-windows