Sure it does! The point to remember about the File class is that it does not create a new file when the constructor is called. Plus, there's no Directory class. ------------------ Michael Ernest, co-author of: The Complete Java 2 Certification Study Guide
Make visible what, without you, might perhaps never have been seen. - Robert Bresson
Hi Gong, There is no directory class, and u can create a directory using File class but u can't change a directory ie. wandering btw directories. Althoug Michael i think u can create a file using File class. In the following way -: File f = new File(); f.createNewFile(); Correct me if i am wrong.