The FileIORequest Class contains the following constructors:
FileIORequest(int type, String file)
FileIORequest(int type)
Creates a FileIORequest object based on the access type requested and the name of the file to which access is requested.
public FileIORequest(int type, String file);
type | The type of access that is requested. This value must be some combination of READ, WRITE, and DELETE. |
file | The name of the file to which I/O access is requested. |
Creates a FileIORequest object based on the access type requested.
public FileIORequest(int type);
type | The access type that is requested. This value must be some combination of READ, WRITE, and DELETE. |