Independentsoft
- any library, any programming language
Home
Purchase
Support
Company
Contact
Graph .NET
>
Tutorial
> Create a new empty file.
Create a new empty file in a folder.
C# example
using System; using System.Threading.Tasks; using Independentsoft.Graph; using Independentsoft.Graph.Files; namespace ConsoleApp1 { class Program { static async Task Main() { try { GraphClient client = new GraphClient(); client.ClientId = "63333333-209e-454e-b7bd-55a4d201270f"; client.Tenant = "independentsoft.onmicrosoft.com"; client.ClientSecret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; DriveItem item = await client.CreateDriveItem("/Folder1", new DriveId("b!T7ZW_FMzJ02x_G6HteZHZ"), "newfile1.txt"); Console.WriteLine("Id: " + item.Id); Console.WriteLine("WebUrl: " + item.WebUrl); Console.Read(); } catch (GraphException ex) { Console.WriteLine("Error: " + ex.Code); Console.WriteLine("Message: " + ex.Message); Console.Read(); } } } }
VB example
Imports System Imports System.Threading.Tasks Imports Independentsoft.Graph Imports Independentsoft.Graph.Files Namespace Sample Class Module1 Shared Sub Main(ByVal args As String()) Dim task = New Task(AddressOf Run) ' Start and wait for task to end. task.Start() Console.Read() End Sub Shared Async Sub Run() Try Dim client As GraphClient = New GraphClient() client.ClientId = "63333333-209e-454e-b7bd-55a4d201270f" client.Tenant = "independentsoft.onmicrosoft.com" client.ClientSecret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" Dim item As DriveItem = Await client.CreateDriveItem("/Folder1", New DriveId("b!T7ZW_FMzJ02x_G6HteZHZ"), "newfile1.txt") Console.WriteLine("Id: " + item.Id) Console.WriteLine("WebUrl: " + item.WebUrl) Console.Read() Catch ex As GraphException Console.WriteLine("Error: " + ex.Code) Console.WriteLine("Error: " + ex.Message) Console.Read() End Try End Sub End Class End Namespace
Need help? Ask our developers:
Name*
Email*
Message*