如何使用Google Apps脚本在我的服务器中复制文件或在我的服务器上移动google电子表格文件。我真的很困惑。我怎么能这样做?
所以,如果有人可以建议我这样做,那对我来说真的很有帮助。谢谢你的帮助。
代码:在我的桌面上点击并下载Google电子表格的代码。但我需要在我的服务器(可能是FTP服务器)上自动下载。
function downloadXLS() {
// Get current spreadsheet's ID, place in download URL
var ssID = SpreadsheetApp.getActive().getId();
var URL = 'https://docs.google.com/spreadsheets/d/'+ssID+'/export?format=xlsx';
// Display a modal dialog box with download link.
var htmlOutput = HtmlService
.createHtmlOutput('<a href="'+URL+'">Click to download</a>')
.setSandboxMode(HtmlService.SandboxMode.IFRAME)
.setWidth(800)
.setHeight(60);
SpreadsheetApp.getUi().showModalDialog(htmlOutput, 'Download XLS');
}