I just used gs_new()
from the googlesheets
package to write a data.frame to a Google Sheet. That's a really neat tool. Today was one of my first actual chances to use it.
My question: is there a way to create the new sheet in a specific Google Drive folder? I wanted to place the Sheet inside an existing, shared folder.
Looking at the function arguments to gs_new()
, I didn't see a way to do this. So I used the drive_mv()
function from the googledrive
package to move it. This two-step process is very workable and handy. I was just wondering if it could be done in one.
Thanks in advance!