Implement the interface [openize.io.IOStream]
| 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. |