# SpreadsheetReadBinary

Reads a spreadsheet file into a binary object.

## Method Signature

```
SpreadsheetReadBinary(src=[any])
```

### Arguments

| Argument | Type     | Required | Description                       | Default |
| -------- | -------- | -------- | --------------------------------- | ------- |
| `src`    | `STRING` | `true`   | The path to the spreadsheet file. |         |

## Examples

Read legacy Excel file:

```js
// Read .xls file (binary format)
var spreadsheet = SpreadsheetReadBinary( "/path/to/file.xls" );
println( "Read legacy Excel file" );
```

## Related

* [SpreadsheetRead()](https://boxlang.ortusbooks.com/boxlang-framework/boxlang-plus/modules/bx-spreadsheet/reference/built-in-functions/spreadsheetread) - Read Excel files
* [SpreadsheetWrite()](https://boxlang.ortusbooks.com/boxlang-framework/boxlang-plus/modules/bx-spreadsheet/reference/built-in-functions/spreadsheetwrite) - Write files
* [File Handling Guide](https://github.com/ortus-boxlang/boxlang-docs/blob/v1.x/boxlang-framework/boxlang-plus/modules/bx-spreadsheet/file-handling.md) - File operations
