Local file access with JavaScript

前端 未结 13 2501
悲哀的现实
悲哀的现实 2020-11-21 04:07

Is there local file manipulation that\'s been done with JavaScript? I\'m looking for a solution that can be accomplished with no install footprint like requiring Adobe AIR.<

13条回答
  •  死守一世寂寞
    2020-11-21 05:02

    If you need access to the entire file system on the client, read/write files, watch folders for changes, start applications, encrypt or sign documents, etc. please have a look at JSFS.

    It allows secure and unlimited access from your web page to computer resources on the client without using a browser plugin technology like AcitveX or Java Applet. However, a peace of software has to be installed too.

    In order to work with JSFS you should have basic knowledge in Java and Java EE development (Servlets).

    Please find JSFS here: https://github.com/jsfsproject/jsfs. It's free and licensed under GPL

提交回复
热议问题