html or java script code to create a text file in hard disk

試著忘記壹切 提交于 2019-12-02 08:36:06

Javascript in a regular HTML page in a browser is not allowed direct access to a path of your choice on the hard disk for security reasons.

The, somewhat experimental, FileSystem APIs in newer browsers offering some capabilities to a sandboxed file system, but you will have to see if your need can be satisfied with those APIs.

Other than that, you would need some way around the security limitations such as doing it from a browser plug-in that the viewer has authorized and installed.

Something tells me that you haven't enough experience to know that a web page cannot create a file in the user's space in the position you want.

Anyway, there is a way, but you can only create a file in a sandbox, i.e. a reserved and protected space assigned by the browser.

This is possible only in the most recent browsers like Chrome... and nothing else, for now.

First, you'll have to ask for some quota:

storageInfo.requestQuota(PERSISTENT, bytes, function(quota) {
   requestFileSystem(PERSISTENT, quota, gotQuota, errorHandler);
}, function(e) {
   alert("Couldn't request quota:" + e);
});

You'll have to define two callback functions: one for success (gotQuota) and one for failure (errorHandler).

function gotQuota(fs) {
    // Creates a file
    fs.root.getFile('file.txt', {create: true}, function(fileEntry) {
       fileEntry.createWriter(function(fw) {
           fileWriter.onwriteend = function(e) {
               console.log("Write successful.");
           };
           fileWriter.onerror = function(e) {
               console.log("Write failed: " + e);
           };
           fw.write(new Blob(["This is the content"], {type: "text/plain"});
       });
    }, errorHandler);
}

Man, it's complicated... Keep in mind that some of these function are vendor prefixed (e.g. webkitStorageInfo).

Reference.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!