Next Previous Contents
You would use the File class to manipulate the operating system files. This class is an imitation of Java's File class and will be very useful in C++ programming. Using this File class in C++ you can do if file exists() ?, if directory exists() ?, file length() and other functions.
- C++ File class is at File.h http://www.angelfire.com/country/aldev0/cpphowto/File.h and File.cpp http://www.angelfire.com/country/aldev0/cpphowto/File.cpp
- Java java.io.File class definition http://java.sun.com/j2se/1.3/docs/api/java/io/File.html
- Quick Reference on File Class http://unicornsrest.org/reference/java/qref11/java.io.File.html
- File Class summary http://www.idi.ntnu.no/~database/SIF8020/java-api/java.io.File.html
Next Previous Contents