Hi, Why is this code not creating any file , even it does not exist in the place?? - Thanks import java.io.*; public class a{ public static void main(String args[]) throws IOException { try{ RandomAccessFile f= new RandomAccessFile("c\\Java\\xx.txt","rw"); System.out.println("true"); System.out.println(f); } catch( IOException ie) {System.out.println("Exception"); } } }