创建 Photoshop 插件 - 尝试在 javascript 函数中找到源文件的更简单方法

Creating Photoshop Plugin - trying to find simpler way to source file in javascript function

我正在创建一个插件,我想同时用于 Mac 和 Windows。

由于文件树不同,我想找到一种更简单的方法来获取我的 /host/index.jsx 文件中包含的函数中的文件。

我的文件位于 /files/thisismyfile.psd

目前我只能通过从主硬盘输入完整的文件树来成功获取它:

var fileRef = new File("/Library/Application Support/Adobe/CEP/extensions/com.my.panel/files/thisismyfile.psd");

我更愿意使用类似的东西:

var fileRef = new File("./files/thisismyfile.psd");

我也试过测试将文件放在其他文件夹中并简单地搜索:

var fileRef = new File("thisismyfile.psd");

运气不好!有什么想法吗?

如果做不到这一点,是否可以对其进行编码,使其显示:

"If this is mac, then search for the file here. If this is windows, then search for the file here."?

我最终使用此脚本来确定文件的位置,具体取决于所使用的系统是 mac 还是 windows。

function isMacOS() {
  return ($.os.toLowerCase().indexOf('mac') >= 0);
}
var fileRef = isMacOS()
    ? new File("/Library/Application Support/Adobe/CEP/extensions/my.panel/files/filename.psd")
    : new File("C:\Program Files\Common Files\Adobe\CEP\extensions\my.panel\files\filename.psd");

    var docRef = app.open(fileRef);
  };