Skip to content

Instantly share code, notes, and snippets.

@trevorfoskett
Last active November 22, 2019 07:33
Show Gist options
  • Save trevorfoskett/a86d65b9ab6901ca17a98f24a051740c to your computer and use it in GitHub Desktop.
Save trevorfoskett/a86d65b9ab6901ca17a98f24a051740c to your computer and use it in GitHub Desktop.
Set the download location for the stream data to /tmp.
...
var dest = fs.createWriteStream(`/tmp/${uFileName}`); // download encrypted content to /tmp
drive.files.get({
fileId: fileId,
alt: 'media'
}, {
responseType: 'stream'
}...
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment