I'm working on a firefox plugin. Part of what I want it to do is when a button is clicked, it write some output to a file. The file may not exist, it which case it needs to be created. If the file exists, it needs to be appended to. Is this possible with firefox add-ons?

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

Of course. See:

https://developer.mozilla.org/en/Code_snippets/File_I%2F%2FO

And:

https://developer.mozilla.org/en/XPCOM_Interface_Reference/nsIFile#create%28%29

link|improve this answer
Cool, thank you. – sameold Oct 9 '11 at 1:34
you might want to accept the answer ;) – c69 Oct 9 '11 at 4:38
feedback

Your Answer

 
or
required, but never shown

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