Name

loadBytes()

Examples
# Open a file and read its binary data
b = loadBytes("something.dat")

# Print each value, from 0 to 255
for i in range(len(b)):
    # Every tenth number, start a line
    if (i % 10) == 0:
        print("")

    # bytes are from -128 to 127, this converts to 0 to 255
    a = b[i] & 0xff
    print("%i " % (a))
# Print a blank line at the end
print("")
Description Reads the contents of a file and places it in a byte array. If the name of the file is used as the parameter, as in the above example, the file must be loaded in the sketch's "data" directory/folder.

Alternatively, the file maybe be loaded from anywhere on the local computer using an absolute path (something that starts with / on Unix and Linux, or a drive letter on Windows), or the filename parameter can be a URL for a file found on a network.

If the file is not available or an error occurs, null will be returned and an error message will be printed to the console. The error message does not halt the program, however the null value may cause a NullPointerException if your code does not check whether the value returned is null.
Syntax
loadBytes(filename)
Parameters
filenameString: name of a file in the data folder or a URL.
Related loadStrings()
saveStrings()
saveBytes()

Updated on Tue Feb 27 14:07:12 2024.

If you see any errors or have comments, please let us know.