Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Install.addFile

Install.addFile

The Install object's addFile method is the standard way to queue files for installation.

var xpiSrc = "file.txt";
initInstall(
  "Adding A File",
  "testFile",
  "1.0.1.7",
  1);
f = getFolder("Program");
setPackageFolder(f);
addFile(xpiSrc);
if (0 == getLastError())
   performInstall();
else
   cancelInstall();

Document Tags and Contributors

 Contributors to this page: Sheppy, trevorh, Fredchat, Rod Whiteley
 Last updated by: Sheppy,