Arun R
Arun R

Reputation: 8392

File System access from Firefox Extension

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

Upvotes: 13

Views: 7184

Answers (1)

sdwilsh
sdwilsh

Reputation: 4682

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

Upvotes: 10

Related Questions