Tips and Frequently Asked Questions

Download files from cloud storage service with ID or DownloadURL only
Different APIs provide different information or use different techniques. For example, unlike the Google Drive API, the OneDrive API does not provide a specific download URL for each file. However only the ID of the file is required to be able download the file, so you can create a dummy CloudItem with only the ID property assigned to be able to use the Download call. In case of Google Drive, you can use the same technique, but assign the DownloadURL property instead of the ID.
Examples:
OneDrive / SkyDrive
var
i: TSkyDriveItem;
begin
i := TSkyDriveItem.Create(nil);
i.ID := ''abc'';
i.FileName := ''filename.ext'';
AdvSkyDrive1.Download(i, i.FileName);
i.Free;
Google Drive
var
i: TGDriveItem;
begin
i := TGDriveItem.Create(nil);
i.DownloadURL := ''abc'';
i.FileName := ''filename.ext'';
AdvGDrive1.Download(i, i.FileName);
i.Free;
Pricing
Single Developer License
Small Team License
Site License
TMS VCL Cloud Pack
€ 175
€
75
yearly renewal
license for 1 developer
Includes
check
Full source code
check
Access to the TMS Support Center
check
Free updates and new releases
MOST POPULAR
TMS VCL Subscription
€ 895
€
450
for a 2 year renewal
license for 1 developer
Includes
check
Full source code
check
Access to the TMS Support Center
check
Free updates and new releases
check
TMS VCL Cloud Pack
check
All TMS VCL products
more_horiz
Discover more
BEST VALUE
TMS ALL-ACCESS
€ 1,795
€
595
yearly renewal
license for 1 developer
Includes
check
Full source code
check
Access to the TMS Support Center
check
Free updates and new releases
check
TMS VCL Cloud Pack
check
All TMS VCL products
check
All TMS products
more_horiz
Discover more
All prices excl. VAT. Renewal price is subject to change and only valid up to 30 days after license has expired. After renewal period a discount price is offered to renew the license.