Microsoft SDK for Java

FileIORequest Class Constructors

The FileIORequest Class contains the following constructors:

FileIORequest(int type, String file)
FileIORequest(int type)

FileIORequest(int type, String file)

Creates a FileIORequest object based on the access type requested and the name of the file to which access is requested.

Syntax

public FileIORequest(int type, String file);

Parameters

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.

FileIORequest(int type)

Creates a FileIORequest object based on the access type requested.

Syntax

public FileIORequest(int type);

Parameters

type The access type that is requested. This value must be some combination of READ, WRITE, and DELETE.

© 1999 Microsoft Corporation. All rights reserved. Terms of use.