https://issues.apache.org/bugzilla/show_bug.cgi?id=44347
Colm Smyth <[EMAIL PROTECTED]> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |[EMAIL PROTECTED]
Status|NEW |NEEDINFO
--- Comment #1 from Colm Smyth <[EMAIL PROTECTED]> 2008-05-13 17:23:38 PST ---
This bug can't be reproduced on Ant 1.7.0 on Windows; I get exactly the same
error for both the non-existent folder "/notexist" and "\notexist".
I don't have access to a Mac; what does the following program print on your
system? (it should be two "false" lines).
public class SlashFileTest {
public static void main(String[] args) {
System.err.println(new java.io.File("\\notexist").exists());
System.err.println(new java.io.File("/notexist").exists());
}
}
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.