7

我想做的事:

我想为测试目的创建一个 Chrome 扩展程序。并且该扩展应该能够访问本地硬盘驱动器上的目录和文件。

我是怎么做到的:

file:///*我在我的manifest.json文件中请求了权限。然后我确保选中了该复选框Allow access to file URLs。然后我为一个文件制作了一个 XHR:

  var xhr = new XMLHttpRequest();  
  xhr.open("GET", 'file://c:/dir/file.name', true);     
  xhr.onload = function(e) {  
      console.log('response: ', xhr.response);
  }  
  xhr.send();

...以及整个目录的 XHR:

  var xhr = new XMLHttpRequest();  
  xhr.open("GET", 'file://c:/dir/', true);     
  xhr.onload = function(e) {  
      console.log('response: ', xhr.response);
  }  
  xhr.send();

...对于整个文件系统:

  var xhr = new XMLHttpRequest();  
  xhr.open("GET", 'file:///', true);     
  xhr.onload = function(e) {  
      console.log('response: ', xhr.response);
  }  
  xhr.send();

发生了什么:

  • 我能够为我的文件请求获得​​正确的响应。
  • 当我请求一个目录时,我收到了 Chrome 的默认人类可读目录概述的源代码:

.

  <html>
  <head>
  <script>

[...]

  </script>
  <style>

[...]

  </style>
  <title id="title"></title>
  </head>
  <body>
  <div id="listingParsingErrorBox" i18n-values=".innerHTML:listingParsingErrorBoxText"></div>
  <span id="parentDirText" style="display:none" i18n-content="parentDirText"></span>
  <h1 id="header" i18n-content="header"></h1>
  <table id="table">
    <tr class="header">
      <td i18n-content="headerName"></td>
      <td class="detailsColumn" i18n-content="headerSize"></td>
      <td class="detailsColumn" i18n-content="headerDateModified"></td>
    </tr>
  </table>
  </body>
  </html>

[...]

  <script>start("C:\\dir\\");</script>
  <script>addRow("..","..",1,"0 B","11/11/11 11:11:11 AM");</script>
  <script>addRow("file.name","file.name",0,"4.9 kB","11/11/11 11:11:11 PM");</script>
  • 当我请求整个文件系统时,我得到了一个错误。

我的问题:

我能够阅读简单的文件。但是我的扩展如何获得一个很好的机器可读的目录或整个文件系统的概述?谢谢。

编辑:我知道 FileSystem API 旨在访问沙盒filesystem://,但也许 Chrome 允许扩展也访问file://. 我找不到任何有关file://从 Chrome 扩展程序访问的文档,所以我只能猜测。

4

1 回答 1

3

独立 Chrome 中没有内置功能。

解析目录列表页面的替代方法:

  1. NPAPI 扩展(C++,推荐)
  2. 具有文件系统访问权限的本地服务器。NodeJS 是一个不错的选择
于 2012-07-12T13:27:10.220 回答