在为adobe illustrator编写插件时,我面临一个非常奇怪的问题,即#include语句中的嵌套路径无法正常工作。
#include "../folder1/folder2/photoutils.jsx"
无效。而
#include "../folder1/photoutils.jsx"
正在运作
我正在努力找出这种行为的答案
答案 0 :(得分:0)
我无法确认您的问题。使用以下文件夹结构,包含工作正常。
.
├── currentfolder
│ └── index.jsx
└── folder1
└── folder2
└── include.jsx
index.jsx的内容
#include "../folder1/folder2/include.jsx"
say();
include.jsx的内容
function say() {
$.writeln('Hello World');
}
从ESTK和Illustrator测试。