Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 oozie 工作流程中,我尝试使用 fs:isDir 函数,但它不允许我在其中传递变量。
${fs:isDir(${temp}) eq true}
它抛出 { 是非法字符的错误。它不工作 ${fs:isDir($temp) eq true}
请让我知道我该怎么做。
谢谢。
这应该工作
${fs:isDir(temp) == true}