admin管理员组

文章数量:1345285

I'm using xul to code a firefox extension, so I need to read/write from local file. How to create for example file "temp.txt" in the following directory "c:/data" ?

I'm using xul to code a firefox extension, so I need to read/write from local file. How to create for example file "temp.txt" in the following directory "c:/data" ?

Share Improve this question edited Mar 13, 2012 at 10:06 Ashraf Bashir asked Mar 12, 2012 at 12:59 Ashraf BashirAshraf Bashir 9,80415 gold badges60 silver badges83 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 6

XUL is a mark-up language, you use it to create a user interface. To do things like writing to files you would use XPCOM. Everything else can be found in the documentation:

  • Creating an nsIFile object using FileUtils module
  • Writing to a file using FileUtils and NetUtil modules

General documentation: FileUtils.jsm, NetUtil.jsm, File I/O code snippets

I found the solution for those who are interested:

getLocalDirectory : function() { 
    let directoryService = Cc["@mozilla/file/directory_service;1"].getService(Ci.nsIProperties); 
    let localDir = directoryService.get("ProfD", Ci.nsIFile); 
    localDir.append("FolderName"); 
    if (!localDir.exists() || !localDir.isDirectory())  
        localDir.create(Ci.nsIFile.DIRECTORY_TYPE, 0774); 
    return localDir; 
}, 

writeFile: function(data) {
    let myFile = lbbs.files.getLocalDirectory(); 
    myFile.append("FileName.txt"); 
    if ( myFile.exists() == false ) 
         myFile.create(Ci.nsIFile.NORMAL_FILE_TYPE, 0774); 
    Components.utils.import("resource://gre/modules/NetUtil.jsm"); 
    Components.utils.import("resource://gre/modules/FileUtils.jsm"); 
    var ostream = FileUtils.openSafeFileOutputStream(myFile) 
    var converter = Components.classes["@mozilla/intl/scriptableunicodeconverter"]. 
    createInstance(Components.interfaces.nsIScriptableUnicodeConverter); 
    converter.charset = "UTF-8"; 
    var istream = converter.convertToInputStream(data); 
    NetUtil.asyncCopy(istream, ostream, function(status) { 
        if (!Components.isSuccessCode(status))  
            return; 
    });
},

readFile: function() {
    let myFile = lbbs.files.getLocalDirectory(); 
    myFile.append("FileName.txt"); 
    if (myFile.exists() == false) 
        myFile.create(Ci.nsIFile.NORMAL_FILE_TYPE, 0774); 
    var data = ""; 
    var fstream = Components.classes["@mozilla/network/file-input-stream;1"].createInstance(Components.interfaces.nsIFileInputStream); 
    var cstream = Components.classes["@mozilla/intl/converter-input-stream;1"].createInstance(Components.interfaces.nsIConverterInputStream); 
    fstream.init(myFile, -1, 0, 0); 
    cstream.init(fstream, "UTF-8", 0, 0); 
    let (str = {}) { 
        let read = 0; 
        do { 
            read = cstream.readString(0xffffffff, str); 
            data += str.value; 
        } while (read != 0); 
    } 
    cstream.close();  
    return data; 
},


The file is now created in: %USER_PROFILE%\AppData\Roaming\Mozilla\FireFox\Profiles\aamu4bzq.default\FolderName\FileName.txt

I think there will be problem when creating the folder outside the application base directory.
For example :- if you want to create a folder inside C:\TEMP it may fail

本文标签: javascriptHow to readwrite file with XULStack Overflow