Articles in this section
Category / Section

Download, edit, and upload Excel file in OneDrive using Microsoft Graph and XlsIO

3 mins read

ms hDrive wi exSyncfusion Essential XlsIO is a .NET Excel library to create, read and edit Excel documents. Using this library, you can edit the Excel files downloaded from OneDrive and upload them again, with the help of Microsoft Graph.

Steps to download Excel file from OneDrive, Edit and upload again programmatically:

Create a Windows Forms Application:

  1. Create a new Windows Forms Application in Visual Studio.

 

Create a new Windows Forms Application in Visual Studio

 

Create a Windows Forms app in Visual Studio

 

 

  1. Install the Syncfusion.XlsIO.WinForms NuGet package as reference to your .NET Framework application from NuGet.org.

 

Install Syncfusion.XlsIO.WinForms NuGet package to the project

 

Install NuGet package to the project

  1. Install the following additional NuGet packages that will be used later.

 

 

Install NuGet packages to the project

 

Install NuGet packages to the project

 

Design the App:

 

  1. Add the following designer variable in Form1.Designer.cs.

 

C#

private System.ComponentModel.IContainer components = null;

 

  1. Replace the existing code in Form1.Designer.cs with the following content, to define the layout.

 

C#

private void InitializeComponent()
{
    this.components = new System.ComponentModel.Container();
    this.button1 = new System.Windows.Forms.Button();
    this.graphLoginComponent1 = new Microsoft.Toolkit.Services.WinForms.GraphLoginComponent(this.components);
    this.SuspendLayout();
    // 
    // button1
    // 
    this.button1.Location = new System.Drawing.Point(325, 152);
    this.button1.Name = "button1";
    this.button1.Size = new System.Drawing.Size(95, 48);
    this.button1.TabIndex = 0;
    this.button1.Text = "Edit Excel";
    this.button1.UseVisualStyleBackColor = true;
    this.button1.Click += new System.EventHandler(this.button1_Click);
    // 
    // graphLoginComponent1
    // 
    this.graphLoginComponent1.ClientId = null;
    this.graphLoginComponent1.Scopes = null;
    // 
    // Form1
    // 
    this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
    this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    this.ClientSize = new System.Drawing.Size(800, 450);
    this.Controls.Add(this.button1);
    this.Name = "Form1";
    this.Text = "Form1";
    this.ResumeLayout(false);
 
}

 

  1. Now include the below components too.

 

C#

private System.Windows.Forms.Button button1;
private Microsoft.Toolkit.Services.WinForms.GraphLoginComponent graphLoginComponent1;

 

Register the App in Portal:

  1. Open a browser and navigate to the Azure Active Directory admin center and login using a personal account or Work or School Account.

 

Register the app in Azure

 

Register the app in Azure

 

  1. Select New registration. On the Register an application page, set the values as follows.
  • Set Name to WindowsForms Graph Tutorial.
  • Set Supported account types to Accounts in any organizational directory and personal Microsoft accounts.
  • Under Redirect URI, change the dropdown to Public client (mobile & desktop), and set the value to urn:ietf:wg:oauth:2.0:oob.

 

  1. Select Register. On the WindowsForms Graph Tutorial page, copy the value of the Application (client) ID and save it, you will need it in the next step.

 

Application ID

 

Application ID

  1. Open Form1.cs and add the following using statements at the top of the file.

 

C#

using Microsoft.Identity.Client;
using Syncfusion.XlsIO;

 

  1. Add the following functions to the Form1.cs class.

 

C#

private async void button1_Click(object sender, EventArgs e)
{
    PublicClientApplication clientApp = new PublicClientApplication(ConfigurationManager.AppSettings["clientId"].ToString());
    Microsoft.Graph.GraphServiceClient graphClient = new Microsoft.Graph.GraphServiceClient("https://graph.microsoft.com/v1.0", new Microsoft.Graph.DelegateAuthenticationProvider(async (requestMessage) => {
        requestMessage.Headers.Authorization = new AuthenticationHeaderValue("bearer", await GetTokenAsync(clientApp));
    }));
    try
    {
        //Initialize ExcelEngine
        ExcelEngine excelEngine = new ExcelEngine();
 
        //Initialize IApplication
        IApplication application = excelEngine.Excel;
 
        //Enable fast record parsing
        application.UseFastRecordParsing = true;
 
        //Get the file from OneDrive into stream
        var stream = await graphClient.Me.Drive.Root.ItemWithPath("Sample.xlsx").Content.Request().GetAsync();
 
        //Set the stream position as '0'
        stream.Position = 0;
 
        //Initialize new MemoryStream and copy the existing stream to this new MemeoryStream
        MemoryStream file = new MemoryStream();
        stream.CopyTo(file);
 
        //Set the stream position as '0'
        file.Position = 0;
 
        //Load the stream into IWorkbook
        IWorkbook workbook = application.Workbooks.Open(file);
 
        //Modify the Excel document
        workbook.Worksheets[0].Range["A2"].Text = "Syncfusion Essential XlsIO";
 
        //Save the modified Excel document as new MemoryStream
        MemoryStream outputStream = new MemoryStream();
        workbook.SaveAs(outputStream);
 
        //Set the stream position as '0'
        outputStream.Position = 0;
 
        //Upload the modified Excel document to OneDrive again
        await graphClient.Me.Drive.Root.ItemWithPath("ModifiedFile2.xlsx").Content.Request().PutAsync<Microsoft.Graph.DriveItem>(outputStream);
 
        //Close the workbook
        workbook.Close();
 
        //Dispose the ExcelEngine
        excelEngine.Dispose();
    }
 
    catch (Microsoft.Graph.ServiceException ex)
    {
        Console.WriteLine(ex);
    }
}

 

 

  1. GetTokenAsync() method can be added as below.

 

C#

async Task<string> GetTokenAsync(PublicClientApplication clientApp)
{
    //need to pass scope of activity to get token  
    string[] Scopes = { "User.Read Files.ReadWrite Files.ReadWrite.All" };
    string token = null;
    AuthenticationResult authResult = await clientApp.AcquireTokenAsync(Scopes);
    token = authResult.AccessToken;
    return token;
}

 

  1. The Excel document should be downloaded, modified and uploaded again into OneDrive.

A complete working example to download an Excel document from OneDrive, Modify it and upload the modified document to OneDrive, can be downloaded from MicrosoftGraphTutorial.zip.

Take a moment to peruse the documentation, where you can find basic worksheet data manipulation options along with features like Conditional Formatting, worksheet calculations through Formulas, adding Charts in worksheet or workbook, organizing and analyzing data through Tables and Pivot Tables, appending multiple records to worksheet using Template Markers, and most importantly PDF and Image conversions with code examples.

Refer here to explore the rich set of Syncfusion Excel (XlsIO) library features.

Note:

Starting with v16.2.0.x, if you reference Syncfusion assemblies from trial setup or from the NuGet feed, include a license key in your projects. Refer the link to learn about generating and registering Syncfusion license key in your application to use the components without trial message.

 

Conclusion

I hope you enjoyed learning about how to download, edit, and upload Excel files in OneDrive with Microsoft Graph in WinForms.

You can refer to our WinForms XIsIO feature tour
page to know about its other groundbreaking feature representations documentation and how to quickly get started for configuration specifications.  You can also explore our WinForms XIsIO example
to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

 

 

 

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