Table plus |
---|
applyColStyleToCell | true |
---|
heading | 0 |
---|
columnTypes | s,s,s,s |
---|
multiple | false |
---|
columnAttributes | style="background:#e5e7ea;font-weight:bold,,style="background:#e5e7ea;font-weight:bold, |
---|
enableSorting | false |
---|
|
Syntax | writeToBinaryFile(filepath, bytes [, append]) | Package | file | Alias | |
...
...
filepath, bytes [, append]) |
|
Description
Excerpt |
---|
|
Prints bytes to a specified file. The file can be overwritten or appended to. |
Prints bytes to a specified file. The file can be overwritten or appended to.
Parameters
Table plus |
---|
applyColStyleToCell | true |
---|
columnTypes | s,s,s,s |
---|
heading | 0 |
---|
multiple | false |
---|
enableSorting | false |
---|
|
Parameter name | Type | Required | Description |
---|
filepath | |
...
String | Yes | Specifies the file name to write in. | bytes |
|
...
...
(Array of bytes) | Yes | Specifies the bytes to be written to the file. | append |
|
...
Boolean | No | 'true' if new bytes are added to the end of the file, otherwise 'false' (default) the whole file will be overwritten. |
|
Return
...
Type
Integer
Return value represents the number of bytes written to the file.
Example
Example 1
Code Block |
---|
writeToBinaryFile("C:/myData.dat", dataBytes[], true) |
Writes (appends) the data from the dataBytes variable to the file “myData"myData.dat”dat".
Notes
Note |
---|
It is recommended that you use forward slashes ( / ) for file paths. As a general observation use the silEnv() routine to create an absolute path. |
See also
Filter by label (Content by label) |
---|
showLabels | false |
---|
max | 25 |
---|
showSpace | false |
---|
cql | label = "file_routines" and space = currentSpace ( ) |
---|
labels |
---|
|
...