Property

BinaryStream.LastErrorCode


Warning

This item was deprecated in version 2019r2. Please use Exception Handling as a replacement.

Description

Reports the last file I/O error. Error numbers are given as original file system error codes.

Notes

For BinaryStream objects created with a String, all errors return 100. This happens if you try to write to or set the length of the BinaryStream.

Sample code

This code gets the last error code. If there is no error code, LastErrorCode returns 0.

Dim i As Integer
Dim readStream As BinaryStream = BinaryStream.Open(readFile, False)
.
i = readStream.LastErrorCode

Compatibility

All project types on all supported operating systems.