从网页中打开查找器/资源管理器中的文件夹?

问题描述 投票:0回答:3

如果我有文件系统路径,我可以在资源管理器(在 Windows 上)或 Finder(在 OS X 上)中打开一个窗口来显示该路径指向的文件夹吗?

跨平台和/或无插件答案的 Cookie 点。

javascript html silverlight flash
3个回答
3
投票

对于 node-webkit (NW.js) 用户,您可以使用...

var gui = require("nw.gui");

document.querySelector("[data-location]").onclick = function() {
  gui.Shell.showItemInFolder(__dirname + '/content/project/' + this.textContent);
};

2
投票

您需要能够从浏览器运行新进程。有几种方法可以做到这一点。我将展示 JNLP 的方法来做到这一点。

创建jnlp文件如下:

    <?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0+" codebase="http://example/" href="jnlpTest.jnlp">
    <information>
        <title>Some Title</title>
        <vendor>Some Vendor</vendor>
        <homepage href="http://example/" />
        <description>Some Description</description>
    </information>
    <security>
        <all-permissions/>
    </security>
    <resources>
        <j2se version="1.6+" />
        <jar href="jnlpTest.jar" />
    </resources>
    <application-desc main-class="MainClass" />
</jnlp>

从以下内容创建 jnlpTest.jar:

public class MainClass {
    public static void main(String args[]) {
        Runtime rt = Runtime.getRuntime();
        try {
            //TODO - different exec for Mac
            rt.exec("explorer.exe");
        } catch (IOException e) {
            //exception
        }

    }
}

带有清单:

Manifest-Version: 1.0
Main-Class: MainClass

签署您的 JNLP jar:

keytool -genkey -keystore testKeys -alias jdc
jarsigner -keystore testKeys jnlpTest.jar jdc

将 jar 和 jnlp 文件放在 Web 服务器上。确保 mime 类型 JNLP 用作

application/x-java-jnlp-file

制作 JNLP 的参考:http://java.dzone.com/articles/java-web-start-jnlp-hello

现在,当用户单击您的 jnlp 链接时,他们将下载 jar 并询问是否可以运行。运行它将导致资源管理器窗口打开。我知道这不是最好的解决方案,但任何解决方案都需要询问用户在其计算机上执行代码的权限。


0
投票

您可能正在寻找的是在操作系统中注册您自己的自定义协议,例如

mycustomapp://path=/mypath&extra=42
,然后让浏览器将链接点击委托给您的应用程序,然后根据操作系统触发适当的操作,即对于Macos,您将运行
open -R /mypath
在 Finder 中显示,对于 Windows 运行
explorer.exe /e,/mypath
,对于 android/ios 触发相应的意图操作。

这是 Zoom、Webex、Telegram、Reddit 和其他应用程序正在使用的方法。

Mac操作系统

对于 macos,您的

Info.plist
文件中需要类似的内容:

<key>CFBundleURLTypes</key>
<array>
  <dict>
    <key>CFBundleURLName</key>
    <string>Local File</string>
    <key>CFBundleURLSchemes</key>
    <array>
      <string>mycustomapp</string>
    </array>
  </dict>
</array>

Windows

在 Windows 上,您需要向注册表添加 新处理程序

安卓和iOS

对于 Android 和 iOS,请参阅:

© www.soinside.com 2019 - 2024. All rights reserved.