在 XUL 中查找 resources:// 或 chrome:// 的路径
在我的 XUL 应用程序中,我必须进行一个比运行单个进程更复杂的系统调用,因此我使用几个命令编写了一个非常简单的 bash 文件,并运行了一个使用该 bash 文件初始化的进程。
问题是如何找到文件本身的路径。通常我使用 chrome:// 或 resources:// 路径来满足我的需要。但我需要绝对路径才能调用该文件。有可靠的方法获取吗?
In my XUL application I have to make a system call which is more complicated than running a single process, so I wrote a very simple bash file with a couple of commands and I run a process initialized with this bash file.
The problem is how to find the path of the file itself. Normally I use chrome:// or resource:// paths for all I need. But I need the absolute path in order to call this file. Is there a reliable way to get it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用过这个函数
来自这个论坛帖子。
I've used this function
From this forum post.