Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

File System access from Firefox Extension

Is it possbile to create a firefox extendsion to write to files in a windows file system ?

like image 294
Arun R Avatar asked Feb 23 '10 08:02

Arun R


Video Answer


1 Answers

Yes, see this page for examples.

Edit

XPCOM and so nsIFile are now legacy technologies :

Use of OS.File is preferred over the examples in this article. Only use these legacy interfaces if OS.File is not available to you.

You can find the new way to go here

like image 118
sdwilsh Avatar answered Nov 04 '22 02:11

sdwilsh