SharePointHelper.Core.3.1
1.2.1
dotnet add package SharePointHelper.Core.3.1 --version 1.2.1
NuGet\Install-Package SharePointHelper.Core.3.1 -Version 1.2.1
<PackageReference Include="SharePointHelper.Core.3.1" Version="1.2.1" />
paket add SharePointHelper.Core.3.1 --version 1.2.1
#r "nuget: SharePointHelper.Core.3.1, 1.2.1"
// Install SharePointHelper.Core.3.1 as a Cake Addin #addin nuget:?package=SharePointHelper.Core.3.1&version=1.2.1 // Install SharePointHelper.Core.3.1 as a Cake Tool #tool nuget:?package=SharePointHelper.Core.3.1&version=1.2.1
NuGet packages
These packages help you with a wrapper to do certain functionalities on SharePoint using C# .NET code which aren't directly available from Microsoft.Graph
Features supported
Task<DriveItem> CreateFolder(AzureConfiguration configuration, string uri, string folderName);
It helps you create a folder in auri
provided. It ensures that, if the folder doesn't exist already, it creates a new one, ignore it otherwise.Task SafeCreateDirectory(AzureConfiguration configuration, string uri);
Creates the passeduri
in the sharepoint site. Say for instance in Example:/RootFolder/Folder1/Folder2
if theFolder1
doesn't exist, it creates it first and then createFolder2
under itTask<string> DownloadFile(AzureConfiguration configuration, string fileId);
Downloads the file as.docx
format and returns the download locationTask<DriveItem> MoveFile(AzureConfiguration configuration, string destinationUri, string destinationFileName, string sourceUri, string sourceFileName);
Moves source file by grabbing it from itssourceUri
andsourceFileName
to the destination location identified by itsdestinationUri
Task<DriveItem> CopyFile(AzureConfiguration configuration, string destinationUri, string destinationFileName, string sourceUri, string sourceFileName);
Copies source file by grabbing it from itssourceUri
andsourceFileName
to the destination location identified by itsdestinationUri
Quickstarter
You can just download the solution zip from this repository and make changes based on your needs
Usage
using SharePointHelper;
namespace TestLibrary
{
public class YourClass
{
private async Task MyMethod()
{
AzureConfiguration configuration = new AzureConfiguration(
"Azure ClientId", "Azure ClientSecret", "Azure TenantId", "SharePoint SiteName", "SharePoint site's endPoint");
// Example:
// Endpoint "https://dummyorganization.sharepoint.com"
// "https://dummyorganization.sharepoint.com/sites/TestingSite"
// SiteName "TestingSite"
SharePointService sharePointService = new SharePointService();
DriveItem newFolderDriveItem = await sharePointService.CreateFolder(configuration, "/root/Folder1/Folder2", "Folder3");
string downloadedPath = await sharePointService.DownloadFile(configuration, "XXXX");
await sharePointService.SafeCreateDirectory(configuration,"/root/FolderA/FolderB");
DriveItem movedDriveItem = await sharePointService.MoveFile(configuration,
"/root/Folder1/dst", "dst.docx",
"/root/Folder1/src", "src.docx");
DriveItem copiedDriveItem = await sharePointService.CopyFile(configuration,
"/root/Folder1/dst", "dst.docx",
"/root/Folder1/src", "src.docx");
}
}
}
Wishing you a better day. Thank you 😃
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.1 is compatible. |
-
.NETCoreApp 3.1
- Common (>= 1.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.