up vote 1 down vote favorite
1
share [g+] share [fb]

I have a bat file which needs to be called from javascript in firefox extension ..

I have bat file present in content/chrome directory.. I tried to call bat file like this ..

var exe = 

Components.classes['@mozilla.org/file/local;1']
          .createInstance(Components.interfaces.nsILocalFile);
exe.initWithPath("chrome://sample/content/test.bat");
exe.launch();

But it's not working ..

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You'll want to use the nsIProcess interface: https://developer.mozilla.org/en/Code%5Fsnippets/Running%5Fapplications#Using%5FnsIProcess

I've used this with batch files before successfully.

(Specifically, here: http://code.google.com/p/extensiondev/source/browse/trunk/content/extensionbuilder.js#915 although some of that code may be out of date!)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.