Java – use ant to execute absolute paths instead of relative paths

My ant script has the following code snippet It works well:

<exec executable="C:\test\foo\programName.exe" />

But when I try to execute it by setting the directory, it is as follows:

<exec executable="programName.exe"
  dir="C:\test\foo\" />

Oh, I see:

Please help! Why doesn't it work when you specify a directory separately?

Solution

Add the resolveexecutable attribute:

<exec executable="programName.exe" 
  resolveexecutable="true"
  dir="C:\test\foo\" />
The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
分享
二维码
< <上一篇
下一篇>>