Local file access with JavaScript

前端 未结 13 2502
悲哀的现实
悲哀的现实 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 04:46

    if you are using angularjs & aspnet/mvc, to retrieve json files, you have to allow mime type at web config

    <staticContent>
        <remove fileExtension=".json" />
        <mimeMap fileExtension=".json" mimeType="application/json" />
      </staticContent>
    
    0 讨论(0)
  • 2020-11-21 04:47

    If you have input field like

    <input type="file" id="file" name="file" onchange="add(event)"/>
    

    You can get to file content in BLOB format:

    function add(event){
      var userFile = document.getElementById('file');
      userFile.src = URL.createObjectURL(event.target.files[0]);
      var data = userFile.src;
    }
    
    0 讨论(0)
  • 2020-11-21 04:52

    If the user selects a file via <input type="file">, you can read and process that file using the File API.

    Reading or writing arbitrary files is not allowed by design. It's a violation of the sandbox. From Wikipedia -> Javascript -> Security:

    JavaScript and the DOM provide the potential for malicious authors to deliver scripts to run on a client computer via the web. Browser authors contain this risk using two restrictions. First, scripts run in a sandbox in which they can only perform web-related actions, not general-purpose programming tasks like creating files.

    2016 UPDATE: Accessing the filesystem directly is possible via the Filesystem API, which is only supported by Chrome and Opera and may end up not being implemented by other browsers (with the exception of Edge). For details see Kevin's answer.

    0 讨论(0)
  • 2020-11-21 04:53

    I am only mentioning this as no one mentioned this. There's no programming language I am aware of which allows manipulation of the underlying filesystem. All programming languages rely on OS interrupts to actually get these things done. JavaScript that runs in the browser only has browser "interrupts" to work with which generally does not grant filesystem access unless the browser has been implemented to support such interrupts.

    This being said the obvious way to have file system access using JavaScript is to use Node.js which does have the capability of interacting with the underlying OS directly.

    0 讨论(0)
  • 2020-11-21 04:55

    Assuming that any file that JavaScript code might need, should be allowed directly by the user. Creators of famous browsers do not let JavaScript access files generally.

    The main idea of the solution is: the JavaScript code cannot access the file by having its local URL. But it can use the file by having its DataURL: so if the user browses a file and opens it, JavaScript should get the "DataURL" directly from HTML instead of getting "URL".

    Then it turns the DataURL into a file, using the readAsDataURL function and FileReader object. Source and a more complete guide with a nice example are in:

    https://developer.mozilla.org/en-US/docs/Web/API/FileReader?redirectlocale=en-US&redirectslug=DOM%2FFileReader

    0 讨论(0)
  • 2020-11-21 04:58

    FSO.js wraps the new HTML5 FileSystem API that's being standardized by the W3C and provides an extremely easy way to read from, write to, or traverse a local sandboxed file system. It's asynchronous, so file I/O will not interfere with user experience. :)

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