openFileObject(String fileName, String mode) Open a random access file object.
Parameters: fileName - the file name Parameters: mode - the access mode.
Copy a file from one directory to another, or to another file.
Parameters: original - the original file name Parameters: copy - the file name of the copy
Create a new temporary file.
Parameters: prefix - the file name prefix Parameters: suffix - the file name suffix Parameters: deleteOnExit - if the file should be deleted when the system exists Parameters: inTempDir - if the file should be stored in the temp file the file name
Check if a file starts with a given prefix.
Parameters: fileName - the complete file name Parameters: prefix - the prefix true if it starts with the prefix
Open a random access file object.
Parameters: fileName - the file name Parameters: mode - the access mode. Supported are r, rw, rws, rwd the file object
Create an output stream to write into the file.
Parameters: fileName - the file name Parameters: append - if true, the file will grow, if false, the file will betruncated first the output stream
Rename a file if this is allowed.
Parameters: oldName - the old fully qualified file name Parameters: newName - the new fully qualified file name throws: SQLException -