mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 12:51:09 +02:00
Be warned. Do not attemp to change the .js "test" source code in ./js They are meant to check - the outdated 0666 octal constant is still parsed correctly, - the outdated 0666 octal constant raises syntax error flag in strict mode, etc. So leave them alone.
16 lines
586 B
JavaScript
16 lines
586 B
JavaScript
var file;
|
|
Components.utils.importGlobalProperties(["File"]);
|
|
|
|
addMessageListener("file.create", function (message) {
|
|
file = Components.classes["@mozilla.org/file/directory_service;1"]
|
|
.getService(Components.interfaces.nsIProperties)
|
|
.get("TmpD", Components.interfaces.nsIFile);
|
|
file.append("foo.txt");
|
|
file.createUnique(Components.interfaces.nsIFile.NORMAL_FILE_TYPE, 0o600);
|
|
sendAsyncMessage("file.created", new File(file));
|
|
});
|
|
|
|
addMessageListener("file.remove", function (message) {
|
|
file.remove(false);
|
|
sendAsyncMessage("file.removed", {});
|
|
});
|