Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md
NotificationsYou must be signed in to change notification settings

g6t/cloudfs

Repository files navigation

CRAN statusR-CMD-check

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

Installation

# from CRANinstall.packages("cloudfs")# from GitHubremotes::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()

About

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md

Stars

Watchers

Forks

Packages

No packages published

Contributors3

  •  
  •  
  •  

Languages


[8]ページ先頭

©2009-2025 Movatter.jp