In message <4c35453c.5090...@gmail.com>, Regis writes: > > It seems another bug is exposed: > > File file = new File("help"); > System.out.println(file.mkdir()); > System.out.println(file.createNewFile()); > > RI output: > true > false > > Harmony output: > true > Exception in thread "main" java.io.IOException: Cannot create: help > at java.io.File.createNewFile(File.java:1233) > at TempFileTest.main(TempFileTest.java:9)
I suspect this is an IBM VME bug not a Harmony bug - specifically the j9 port library. Did you test with DRLVM? We don't want to workaround bugs in the j9 port library in classlib. Regards, Mark.