Questions tagged [google-cloud-storage-r]

3 questions
2
votes
2 answers

Google Cloud Storage - cannot overwrite files

I am trying to use Google Cloud Storage (GCS) to serve static content for a website (e.g. css, js, etc.) So I upload style.css, it serves well - then I do a small modification to style.css, upload it again - GCS still serves the original…
Neurus
  • 657
  • 4
  • 27
1
vote
0 answers

googleCloudStorageR::gcs_auth: Error: Non-interactive session and no authentication email selected

I'd like to use this function in docker to authenticate Biq Query and Google Cloud Storage. authenticate <- function() { scopes <- c("https://www.googleapis.com/auth/cloud-platform", …
1
vote
2 answers

Uploading png images to GCS in R - can upload individually, but cannot upload entire directory

We have a local directory with 20000 images that needs to go to GCS. Using R (and googleCloudStorageR), we can loop over each of the images and upload to GCS as such: # setup library(googleCloudStorageR) gcs_auth(json_file =…
Canovice
  • 9,012
  • 22
  • 93
  • 211