How to get the contents of the directory from local PC in javascript

前端 未结 8 2336
轮回少年
轮回少年 2020-12-31 20:13

How to get the contents of the directory from local PC in javascript/jQuery? For example from C:\\Images

相关标签:
8条回答
  • 2020-12-31 20:54

    I don't think this is possible because accessing the local file system is a terrible security risk.

    0 讨论(0)
  • 2020-12-31 20:58

    This only works in google chrome:

    <input type="file" webkitdirectory>
    

    This will prompt the user to select a directory and you can then access the files property of the input to see the contained files.

    It is then possible to use the File System API to construct a virtual, sandboxed file system of the user selected files and have programmatic access to this virtual filesystem as if it was a real filesystem accessed by desktop app.

    There is no way otherwise because that would be a big security issue

    Working demo in google chrome: http://jsfiddle.net/JwgqC/

    0 讨论(0)
提交回复
热议问题