Independentsoft
- any library, any programming language
Home
Purchase
Support
Company
Contact
Graph .NET
>
Tutorial
> Copy drive item
Creates a copy of a file under the same folder.
C# example
using System; using System.IO; 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"; String copyStatusUrl = await client.CopyDriveItem("/Folder1/Test.pdf", "TestNew.pdf", new DriveId("b!T7ZW_FMzJ02x_G6HteZHZ")); Console.WriteLine(copyStatusUrl); } catch (GraphException ex) { Console.WriteLine("Error: " + ex.Code); Console.WriteLine("Message: " + ex.Message); Console.Read(); } } } }
VB example
Imports System.IO 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 copyStatusUrl As String = Await client.CopyDriveItem("/Folder1/Test.pdf", "TestNew.pdf", New DriveId("b!T7ZW_FMzJ02x_G6HteZHZ")) Console.WriteLine(copyStatusUrl) 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*