Articles in this section
Category / Section

How to load and upload word documents to/ from azure file storage in document editor

2 mins read

How to upload and open word documents from azure file storage in Blazor – Document Editor

You can upload the content of the document editor as a word document to azure storage and load the word documents in the document editor from azure file storage.

Refer to the steps below where we will build the Blazor server-side application with document editor component to programmatically connect with azure file storage for opening and saving the word documents.

Step 1: Please refer to the documentation below and integrate the document editor component in blazor server-side application.

https://blazor.syncfusion.com/documentation/document-editor/getting-started/server-side-application/?no-cache=1

Step 2: Install Microsoft.Azure.Storage.File package for working with the Microsoft Azure Storage File service.

https://www.nuget.org/packages/Microsoft.Azure.Storage.File/11.1.5?_src=template

Step 3: Need a connection string to access data in an Azure Storage account at runtime. Refer to the below link for details on connection string.

https://docs.microsoft.com/en-us/azure/storage/common/storage-configure-connection-string

Index.razor

@page "/"
 
@using Syncfusion.Blazor.DocumentEditor
@using System.IO;
@using System.Net;
@using System.Web;
@using Newtonsoft.Json;
@using Microsoft.Azure.Storage;
@using Microsoft.Azure.Storage.File;
@using Syncfusion.Blazor.Buttons;
@using Newtonsoft.Json
<SfButton IsPrimary="true" @onclick="onOpen">Open</SfButton>
<SfButton IsPrimary="true" @onclick="onUpload">Upload</SfButton>
<SfDocumentEditorContainer ID="container" @ref="container" Height="590px" EnableToolbar="true">
    <DocumentEditorContainerEvents Created="OnLoad"></DocumentEditorContainerEvents>
</SfDocumentEditorContainer>
 
@code{
    SfDocumentEditorContainer container;
    // Set your connection string. 
    // To check your connection string please refer below url.
    // https://docs.microsoft.com/en-us/azure/storage/common/storage-configure-connection-string
    // Below is the dummy connecting string. Set yours.
    string connectionString = "DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://127.0.0.1:10000/devstoreaccount1;TableEndpoint=http://127.0.0.1:10002/devstoreaccount1;QueueEndpoint=http://127.0.0.1:10001/devstoreaccount1";
    public void OnLoad(object args)
    {
        string filePath = "wwwroot/data/GiantPanda.docx";
        using (FileStream fileStream = new FileStream(filePath, System.IO.FileMode.Open, System.IO.FileAccess.Read))
        {
            WordDocument document = WordDocument.Load(fileStream, ImportFormatType.Docx);
            string json = JsonConvert.SerializeObject(document);
            document.Dispose();
            fileStream.Dispose();
            DocumentEditorModule editor = container.GetDocumentEditor();
            editor.Open(json);
            editor.DocumentName = "GiantPanda.docx";
        }
    }
    public void onOpen()
    {
        //File share name
        //For creating file shares, select your storage account. then select File shares under File service. then create new fileshare by clicking on File share button.
        //Set the newly created file share name to share reference.
        string shareReference = "documents";// Here we have created documents as file share name. please set yours.        
        //File name to be loaded into Syncfusion Document Editor
        string fileReference = "GiantPanda.docx";
        CloudStorageAccount cloudStorageAccount = CloudStorageAccount.Parse(connectionString);
        CloudFileClient fileClient = cloudStorageAccount.CreateCloudFileClient();
        //Get file share
        CloudFileShare cloudFileShare = fileClient.GetShareReference(shareReference);
        if (cloudFileShare.Exists())
        {
            //Get the related directory
            CloudFileDirectory dir = cloudFileShare.GetRootDirectoryReference();
            if (dir.Exists())
            {
                //Get the file reference
                CloudFile file = dir.GetFileReference(fileReference);
                MemoryStream memoryStream = new MemoryStream();
                //Download file to local disk
                file.DownloadToStream(memoryStream);
                WordDocument document = WordDocument.Load(memoryStream, ImportFormatType.Docx);
                container.GetDocumentEditor().Open(JsonConvert.SerializeObject(document));
                document.Dispose();
                memoryStream.Dispose();
            }
        }
        ;
    }
    public async void onUpload()
    {
        DocumentEditorModule editor = container.GetDocumentEditor();
        object base64Data = await editor.SaveAsBlob(FormatType.Docx);
 
        Dictionary<string, string> documentContent = Newtonsoft.Json.JsonConvert.DeserializeObject<Dictionary<string, string>>(base64Data.ToString());
        byte[] data = Convert.FromBase64String(documentContent["data"]);
        Stream stream = new MemoryStream(data);
 
        //Connect to Azure
        CloudStorageAccount storageAccount = CloudStorageAccount.Parse(connectionString);
 
        // Create a reference to the file client.
        CloudFileClient fileClient = storageAccount.CreateCloudFileClient();
 
        // Get a reference to the file share we created previously.
        CloudFileShare share = fileClient.GetShareReference("documents");
 
        if (share.Exists())
        {
            // Generate a SAS for a file in the share
            CloudFileDirectory rootDir = share.GetRootDirectoryReference();
            CloudFile file1 = rootDir.GetFileReference("GiantPanda.docx");
 
            Stream fileStream = stream;
 
            file1.UploadFromStream(fileStream);
            fileStream.Dispose();
        }
    }
}
 
 
 

 

Output

Sample output

In this sample, added a button to upload the document editor content as docx document to azure file storage and button to open the uploaded document in document editor. You can download the sample from below link.

https://www.syncfusion.com/downloads/support/directtrac/general/ze/DocEditorBlazorApp1688354291

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments
Please  to leave a comment
Access denied
Access denied