From d89e6dc508364b8a02ca153c7c57d39e2deab2f5 Mon Sep 17 00:00:00 2001 From: KarthikaSF4773 Date: Thu, 6 Nov 2025 18:17:41 +0530 Subject: [PATCH] 987283-ReadAzureStream --- Document-Processing-toc.html | 3 +++ ...pport-reading-Excel-from-azure-blob-storage.md | 15 +++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-reading-Excel-from-azure-blob-storage.md diff --git a/Document-Processing-toc.html b/Document-Processing-toc.html index 9e99d4736..4c95b6163 100644 --- a/Document-Processing-toc.html +++ b/Document-Processing-toc.html @@ -5896,6 +5896,9 @@
  • Does XlsIO support setting row height for individual cells in Excel?
  • +
  • + Does XlsIO support reading Excel from Azure Blob Storage? +
  • diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-reading-Excel-from-azure-blob-storage.md b/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-reading-Excel-from-azure-blob-storage.md new file mode 100644 index 000000000..82646c562 --- /dev/null +++ b/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-reading-Excel-from-azure-blob-storage.md @@ -0,0 +1,15 @@ +--- +title: Support for reading Excel files directly from Azure Blob Storage streams | Syncfusion +description: This page explains whether Syncfusion XlsIO supports reading Excel files directly from Azure Blob Storage streams using Syncfusion .NET Excel library (XlsIO). +platform: document-processing +control: XlsIO +documentation: UG +--- + +# Does XlsIO support reading Excel from Azure Blob Storage? + +No, Syncfusion XlsIO does not support reading Excel files directly from Azure Blob Storage streams due to stream compatibility limitations. Excel files (.xlsx) are internally ZIP packages, and XlsIO requires a seekable stream to parse and decompress their structure. Streams provided by Azure Blob Storage are typically non-seekable and optimized for forward only access, which is not suitable for ZIP based formats like Excel. + +The recommended approach is to first download the blob content into a MemoryStream. This ensures the stream is seekable and compatible with XlsIO for parsing and decompression. In general, when working with blob content that needs to be parsed or decompressed such as Excel or ZIP files, loading into a memory buffer is the correct approach. + +For implementation details, please refer to Loading and saving Excel document in Azure Cloud Storage. \ No newline at end of file