使用以下脚本在文件中创建/附加行。在 Google-Online-Environment 中运行良好,我可以查看文件并查看如何附加行。但是,通过我的电脑上的 Google Drive-Folder 查看文件只给了我第一行(在创建期间编写的那个)。其他人只在我的电脑上关闭并重新启动谷歌驱动器后才出现(等待 2 小时)。那么我可以在我的脚本中做什么来做某种“刷新”来查看我的电脑上的变化?
function appendFile (textArea) { // run by timer
var d=new Date();
var id;
if ((id=ScriptProperties.getProperty ("fileId"))==null) {
var f=DocsList.createFile("List", "Started at "+d+"\n");
ScriptProperties.setProperty ("fileId", f.getId());
}
else {
var f=DocsList.getFileById(id);
f.append("Appended "+d+"\n");
if (textArea!=undefined) {
textArea.setText ("id="+id+"\n"+"name="+f.getName()+"\n"+"date="+d+"\nContents="+f.getContentAsString());
}
}
}