Skip to content

Instantly share code, notes, and snippets.

View zhouyang-bigdata's full-sized avatar

iambuffett zhouyang-bigdata

View GitHub Profile
@zhouyang-bigdata
zhouyang-bigdata / submit.md
Created January 17, 2023 14:13 — forked from tanaikech/submit.md
Uploading File to Google Drive using HTML and Google Apps Script

Uploading File to Google Drive using HTML and Google Apps Script

This is a simple sample script for uploading a file using the file input tag of HTML. As the important point, the file is sent as the byte array for using Google Apps Script. By this, at Google Apps Script side, the byte array can be converted to a blob using a simple script.

HTML & Javascript

<input id="file" type="file" onchange="saveFile(this)" />
<script>
 function saveFile(f) {