Name: vi73552 Date: 06/22/99
java.io.File file=new java.io.File(file_name,"rw");
if (!file.exists()) file.createNewFile();
Native Method called by createNewFile throws IOException when
given file does not exist. This behavior should be changed
in either createNewFile() or in the native method.
The purpose behind calling createNewFile() is for the file
to be created. This is thwarted by the IOException.
(Review ID: 83322)
======================================================================