早上好, 因为隐私政策我无法再通过python上传/更新我的Google云端硬盘电子表格。认证不起作用。我的新解决方案是通过Google Scripts上传语言环境文件,例如WebApps。我知道如何在Google云端硬盘上传一个简单的区域设置文件:
function doGet(e) {
return HtmlService.createTemplateFromFile('forms')
.evaluate() // evaluate MUST come before setting the Sandbox mode
.setTitle('Name To Appear in Browser Tab')
}
function processForm(theForm) {
var fileBlob = theForm.picToLoad;
Logger.log("fileBlob Name: " + fileBlob.getName())
Logger.log("fileBlob type: " + fileBlob.getContentType())
Logger.log('fileBlob: ' + fileBlob);
var fldrSssn = DriveApp.getFolderById("my folder");
fldrSssn.createFile(fileBlob);
return true;
}
我的问题是如何设置特定的区域设置文件夹(目前我只能手动选择文件)以及如何通过此脚本更新Google云端硬盘上的现有电子表格。目前我每上传一个新文件...