2

如何将本地(文件系统)URI 转换为路径?
它可以用nsIIOService++来完成,newURI()但这似乎还有很长的路要走。 有没有更短的方法?QueryInterface(Components.interfaces.nsIFileURL)file.path

这是一个示例代码:

var aFileURL = 'file:///C:/path-to-local-file/root.png';
var ios = Components.classes["@mozilla.org/network/io-service;1"]
              .getService(Components.interfaces.nsIIOService);
var url = ios.newURI(aFileURL, null, null); // url is a nsIURI

// file is a nsIFile    
var file = url.QueryInterface(Components.interfaces.nsIFileURL).file;

console.log(file.path); // "C:\path-to-local-file\root.png"
4

1 回答 1

5

支持的方式实际上是您已经在做的事情。如果您觉得它太冗长,请为自己编写一个辅助函数。当然,您可以使用各种助手将其缩短一点。

const {classes: Cc, interfaces: Ci, utils: Cu} = Components;
Cu.import("resource://gre/Services.jsm");

var aFileURL = 'file:///C:/path-to-local-file/root.png';
var path = Services.io.newURI(aFileURL, null, null).
           QueryInterface(Ci.nsIFileURL).file.path;

或者:

const {classes: Cc, interfaces: Ci, utils: Cu} = Components;
Cu.import("resource://gre/modules/NetUtil.jsm");

var aFileURL = 'file:///C:/path-to-local-file/root.png';
var path = NetUtil.newURI(aFileURL).QueryInterface(Ci.nsIFileURL).file.path;
于 2014-07-19T20:47:55.153 回答