Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个对文件系统具有完全访问权限的应用程序,并且我希望能够获取我的扩展目录的绝对路径。我该怎么做?
我的应用程序有权"<all_urls>", {"filesystem": [ "write" ]}并已选中“允许访问文件 url”。
"<all_urls>", {"filesystem": [ "write" ]}
如果您指的是文件系统路径,那么每个操作系统都会有所不同。您可以通过对扩展标识符进行文件搜索来找到它。
如果你想要一个 chrome 引用,你可以使用: chrome.extension.getURL(''); 你也可以在字符串中提供一些东西,它会给你一个路径,你需要引用你的应用程序中包含的文件。
chrome.extension.getURL('');
例子:
chrome.extension.getURL('index.html');
回报:
"chrome-extension://gbchcmhmhahfdphkhkmpfmihenigjmpp/index.html"