9

我正在尝试将特定*.csv文件从我的 Google Drive 下载到我计算机上的本地文件夹中。我试过以下没有运气:

ContentService.createTextOutput().downloadAsFile(fileName);

我没有收到错误消息,似乎什么也没有发生。关于我的尝试有什么问题的任何想法?

4

1 回答 1

7

ContentService 用于将文本内容作为 Web 应用程序提供。您显示的代码行本身没有任何作用。假设它是您作为 Web 应用程序部署的函数的单行主体doGet(),那么这就是您什么都看不到的原因:

因为我们没有内容,所以没有什么可下载的,所以你看,好吧,什么都没有

CSV 下载器脚本

该脚本将获取您 Google Drive 上 csv 文件的文本内容,并将其提供给下载。保存脚本版本并将其发布为 Web 应用程序后,您可以将浏览器定向到发布的 URL 以开始下载。

根据您的浏览器设置,您可以选择特定的本地文件夹和/或更改文件名。您无法从运行此脚本的服务器端控制它。

/**
 * This function serves content for a script deployed as a web app.
 * See https://developers.google.com/apps-script/execution_web_apps
 */
function doGet() {
  var fileName = "test.csv"
  return ContentService
            .createTextOutput()            // Create textOutput Object
            .append(getCsvFile(fileName))  // Append the text from our csv file
            .downloadAsFile(fileName);     // Have browser download, rather than display
}    

/**
 * Return the text contained in the given csv file.
 */
function getCsvFile(fileName) {
  var files = DocsList.getFiles();
  var csvFile = "No Content";

  for (var i = 0; i < files.length; i++) {
    if (files[i].getName() == fileName) {
      csvFile = files[i].getContentAsString();
      break;
    }
  }
  return csvFile
}
于 2013-07-04T02:04:44.230 回答