Astonsoft OneDrive Delphi Component v3.1 DXE-DX10.3 Cracked
Astonsoft OneDrive Delphi Component v3.1 DXE-DX10.3 Cracked
OneDrive Delphi component is a non-visual component that allows you to work with Microsoft OneDrive. The component supports Delphi XE and newer Delphi versions and works directly with OneDrive using Microsoft Graph.
Features
Get account info including total and remaining storage quota
Get file and folder info including size and last modified timestamp
Create and edit folders
Upload, update and download files
Copy and move files between folders
Rename and delete files
Share files and folders
Unicode support
HTTPS support
Examples
Connecting to OneDrive and showing list of folders and files in TreeView.
procedure Browse(Parent: TTreeNode = nil);
var
FFileInfo: TSDFileInfo;
CurNode: TTreeNode;
ParentID: String;
begin
if Parent = nil then
ParentID := ''
else
ParentID := TSDFileInfo(Parent.Data).ID;
if SkyDrive.FindFirst(FFileInfo, ParentID) = 0 then
repeat
if Parent = nil then
CurNode := TreeView.Items.AddChildObject(TreeView.Items.GetFirstNode,
FFileInfo.Title, FFileInfo)
else
CurNode := TreeView.Items.AddChildObject(Parent, FFileInfo.Title,
FFileInfo);
if FFileInfo.IsDir then
Browse(CurNode);
until SkyDrive.FindNext(FFileInfo) 0;
end;
Only for V.I.P
Warning! You are not allowed to view this text.