我haved創建的文件夾,代碼就像爲什麼我不能在文件夾中創建文件,XPCOM
var file = Components.classes["@mozilla.org/file/local;1"]
.createInstance(Components.interfaces.nsILocalFile);
var foStream = Components.classes["@mozilla.org/network/file-output-stream;1"]
.createInstance(Components.interfaces.nsIFileOutputStream);
filePath = path;
file.initWithPath(filePath);
if(file.exists() == false) {
file.create(0x01, 0644);
}
但是當我創建的文件夾中的文件,有一個錯誤顯示這樣的
錯誤:未捕獲的異常:
[Exception... "Component returned failure code: 0x80520015 (NS_ERROR_FILE_ACCESS_DENIED) [nsILocalFile.create]" nsresult: "0x80520015 (NS_ERROR_FILE_ACCESS_DENIED)"
有人能幫助我嗎?
好的,謝謝! – user2473037