[EMAIL PROTECTED] wrote: > Unfortunately, Java does not support the notion of a changeable current > process directory. >
BINGO! That's why ant's implementation of <exec> is so twisted. People at Sun are looking into fixing the JVM for java.lang.Runtime.exec() by adding a way to set the subprocesses working directory. The reason they don't allow changing the cwd in a JVM is because of thread safety issues. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
