Opens the file at path.
mode = READ_MODE : File will be opend in read mode.
mode = WRITE_MODE : File will be opend in write mode. If there exists no file at path a new file will be created.
You only have to pass the endian parameter if you want to read/write a binary file.
endian = BIG_ENDIAM: File data will be writen/read in big endian mode.
endian = LITTLE_ENDIA: File data will be writen/read in little endian mode.
|