Is it possible to access local file via javascript? - Stack Overflow

if (window.ActiveXObject) {try {var fso = new ActiveXObject("Scripting.FileSystemObject"); fso


    if (window.ActiveXObject) {
        try {
            var fso = new ActiveXObject("Scripting.FileSystemObject"); 
            fso.CopyFile("C:\\Program Files\\GM4IE\\scripts\\source.txt","C:\\Program Files\\GM4IE\\scripts\\target.txt", 1);
            fso = null;
            }
            catch (e) {
            alert (e.message);
            }
    }

I am getting error : "Automation server can not create object" on the line where I am creating ActiveXObject instance.
I understand that it's considered very bad to access hard-drive data using javascript but I just need it.
I am using IE8 , Greasemonkey4IE to run my javascript.

Thank you,
Mohit

******************************


    function WriteFile()
    {
       var fso  = new ActiveXObject("Scripting.FileSystemObject");
       fso.CopyFile("C:\\source.txt","C:\\target.txt", 1);
    }

I've put the above code inside a simple HTML page and it worked perfect.
.htm
You can find the similar code on above mentioned location.
I modified it a bit, tough.
But when I am trying to run it through GreaseMonkey4IE it simply spitting the same error I specified earlier.



I did it guys, but thanks a lot for your quick and helpful replies.
All I did is :
Go to Tools > Internet options > Security > Custom Level
Under the ActiveX controls and plug-ins, select Enable for Initializing and Script ActiveX controls not marked as safe.


    if (window.ActiveXObject) {
        try {
            var fso = new ActiveXObject("Scripting.FileSystemObject"); 
            fso.CopyFile("C:\\Program Files\\GM4IE\\scripts\\source.txt","C:\\Program Files\\GM4IE\\scripts\\target.txt", 1);
            fso = null;
            }
            catch (e) {
            alert (e.message);
            }
    }

I am getting error : "Automation server can not create object" on the line where I am creating ActiveXObject instance.
I understand that it's considered very bad to access hard-drive data using javascript but I just need it.
I am using IE8 , Greasemonkey4IE to run my javascript.

Thank you,
Mohit

******************************


    function WriteFile()
    {
       var fso  = new ActiveXObject("Scripting.FileSystemObject");
       fso.CopyFile("C:\\source.txt","C:\\target.txt", 1);
    }

I've put the above code inside a simple HTML page and it worked perfect.
http://www.c-point./JavaScript/articles/file_access_with_JavaScript.htm
You can find the similar code on above mentioned location.
I modified it a bit, tough.
But when I am trying to run it through GreaseMonkey4IE it simply spitting the same error I specified earlier.



I did it guys, but thanks a lot for your quick and helpful replies.
All I did is :
Go to Tools > Internet options > Security > Custom Level
Under the ActiveX controls and plug-ins, select Enable for Initializing and Script ActiveX controls not marked as safe.

Share edited Jul 19, 2011 at 8:21 EMM asked Jul 19, 2011 at 5:55 EMMEMM 1,8129 gold badges36 silver badges58 bronze badges 4
  • see if you find this useful codeproject./KB/scripting/JavaScript__File_Handling.aspx – Devjosh Commented Jul 19, 2011 at 6:00
  • if you want to use mozilla then this is specially for mozilla www-archive.mozilla/js/js-file-object.html – Devjosh Commented Jul 19, 2011 at 6:02
  • @Devjosh I need it specifically for IE. – EMM Commented Jul 19, 2011 at 6:35
  • if need it specifically for IE then link above is specific to IE only – Devjosh Commented Jul 19, 2011 at 6:40
Add a ment  | 

3 Answers 3

Reset to default 5

Using native JavaScript, no, it is not generally possible to access a local file. Using plugins and extensions like ActiveX, Flash, or Java you can get around this rule, generally with some difficulty.

For some browser and OS specific exceptions to this general rule, you might want to have a look here:

Local file access with javascript

Note that as of late 2012, the FileReader API has been supported in all major browsers and provides a native JavaScript mechanism for accessing local files that the user nominates (via an input element or by dropping them into the browser).

This still cannot be used to access an arbitrary file by name/path as in the examples in the original question.

HTML5 File API has multiple ways to access local files.

window.requestFileSystem allows you to request access to the filesystem. Browser support is very poor on this (Chrome only).

FileReader is the HTML5 FileReader API that allows you to programatically read files that users select through a <input type='file' /> Browser support is better on this.

You should use fallbacks like flash and POST to a server for full file access.

Generally reading arbitary files is considered "cheating the browser" so I you'll either have to use secure HTML5, ActiveX or Flash. All 3 of those require user permissions.

After some research I have found:

 var fso = new ActiveXObject("Scripting.FileSystemObject");
 //This line will create a xml file on local disk, C drive
 fh = fso.CreateTextFile( "C:\\fileName.xml", true);
 fh.WriteLine("this is going to be written in fileName.xml");

This is how we can do it.There are other methods also.

Accessing local file system is very bad thing to do but yes we can do it.

Automation server can not create object

To get rid of this error go to Tools → Internet Options → Security → select Internet icon → click Custom level → select Enable for Initialize and script ActiveX controls not marked as safe for scripting.

I have not tested this on any other berowser except IE8, but I am sure it will work.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743667290a4487186.html

相关推荐

  • Is it possible to access local file via javascript? - Stack Overflow

    if (window.ActiveXObject) {try {var fso = new ActiveXObject("Scripting.FileSystemObject"); fso

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信