zoukankan      html  css  js  c++  java
  • 使用JavaScript遍历本地文件夹的文件

    This blog is written based on Chrome 45.0.2454.85 m.

    In HTML5 there is one additional attribute available for tag a, the “download”. By clicking on the “a” tag with “download” attribute, you can directly get download operation performed. See the simple example below:

    Click Save hyperlink, the download is executed immediately and I have a downloaded file with correct name and content specified in the example.


    This useful attribute could help us to finish some task without intensive programming. For example, I need to get the file list of a given folder in my laptop via JavaScript. Here below is how to achieve it:

    (1) Create a simple html page with source code below and open it via Chrome.
    (2) Open Chrome development tool, type the command like below. There is a notification poped up by Chrome, asking you if you allow the file download. Click ok. Then a html file is automatically downloaded by Chrome.


    Open the html source code and compare its content with the actual files in your local folder. They are exactly matched.

    要获取更多Jerry的原创文章,请关注公众号"汪子熙":

  • 相关阅读:
    IOS之helloworld
    xcode4.2中创建Navigation-Based Application
    IOS之数据持久化
    IOS之多视图应用程序
    IOS之高级控件表视图
    IOS之基本UI控件
    IOS之导航控制器与表视图
    IOS之应用程序设置
    IOS之高级控件拾取器
    IOS之UI基础
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/13625668.html
Copyright © 2011-2022 走看看