如何在 Javascript/Extendscript 中找到 windows 文件扩展名的默认运行器应用程序

How to find the default runner application for a windows file extension in Javascript/Extendscript

我正在创建一个扩展脚本,需要验证 python 是否安装在机器上。为此,我想要一个看起来有点像这样的函数:

function defaultApp(fileExtension) { return defaultAppName; }

然后检查默认应用名称是否为'python.exe'。 根据我的理解(从另一个使用 python winreg 库实现解决方案的类似 post 收集的),应该访问 windows 注册表以获取此类信息。

您可以 运行 像这样的 bat 文件:

python --version > d:\p.txt

然后查看txt文件的内容。如果 Python 已安装(并配置),您将获得有关 Python 版本的信息。如果没有 Python 你将得到空的 txt 文件。

可以是这样的:

function check_python() {

    // create the bat file
    var bat_file = File(Folder.temp + "/python_check.bat");
    bat_file.open("w");
    bat_file.write("python --version > %temp%/python_check.txt");
    bat_file.close();

    // check if the bat file was created
    if (!bat_file.exists) {
        alert ("Can't check if Python is installed");
        return false;
    }

    // run the bat file
    bat_file.execute();
    $.sleep(300); 

    // check if the txt file exists
    var check_file = File(Folder.temp + "/python_check.txt");
    if (!check_file.exists) { 
        alert ("Can't check if Python is installed"); 
        bat_file.remove();
        return false;
    }

    // get contents of the txt file
    check_file.open("r");
    var contents = check_file.read();
    check_file.close();

    // check the contents
    if (contents.indexOf("Python 3") != 0) { 
        alert("Python 3 is not found"); 
        bat_file.remove();
        check_file.remove();
        return false;
    }

    // hooray!
    alert("Python is found!")
    bat_file.remove();
    check_file.remove();
    return true;
}

var is_python = check_python();

此解决方案的灵感来自 Yuri Khristich 的回答。 (更紧凑的版本)

//@include "utils/$file.jsx";
function ispy()
{
    var ispy,
        cmd = "python --version > %temp%/pycheck.txt",
        chk = File(Folder.temp + "/pycheck.txt").$create(),
        bat = File(Folder.temp + "/pycheck.bat").$create(cmd);
    
    bat.$execute(100);
    ispy = !!chk.$read();
    //cleanup:
    File.remove(bat, chk);
    return ispy;
}

$.writeln(ispy()) //true

$read、$create、$execute 和 File.remove() 不是内置函数。我创建它们是为了帮助整理我的代码。