Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 843 Bytes

File metadata and controls

15 lines (10 loc) · 843 Bytes

openize.io.IOFileStream

Implement the interface [openize.io.IOStream]

Constructors

Name Description Parameters
IOFileStream Open/Create a file with an mode access. String path - The file path to open/create.
IOMode mode - The file access mode.
IOFileStream Open/Create a file with an mode access. java.io.File file - The file path to open/create.
IOMode mode - The file access mode.
IOFileStream Open/Create a file with an mode access. java.nio.file.Path path - The file path to open/create.
IOMode mode - The file access mode.
IOFileStream Create an instance of IOStream over RandomAccessFile. java.io.RandomAccessFile file - The file.

[Back to API_README]