diff --git a/Document-Processing-toc.html b/Document-Processing-toc.html index d77598b7c..8499c1853 100644 --- a/Document-Processing-toc.html +++ b/Document-Processing-toc.html @@ -5899,6 +5899,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