Get access to over 100 FireMonkey cross platform samples for Android, IOS, OSX, Windows, and Linux!

AppmethodCode SnippetDelphiFiremonkeyIOS

Exclude Files From The Icloud Backup With This Code In #Delphi XE8 Firemonkey On #IOS

Delphi XE8 Firemonkey Icloud Backup Flag Apple IOSIf you are deploying files with your Delphi XE8 Firemonkey apps to IOS in the Startup\Documents directory and you do not want or need them backed up to Icloud there is a code snippet you can use to turn off the backup flag. I found this code over on the German Delphi forum. The flag under IOS is called NSURLIsExcludedFromBackupKey and the Apple docs are here. You can find out more about when and how you should use this no backup flag over on StackOverflow. One example of usage is if you have a large SQLite file that you are deploying with the app and you have no need for it to backup to Icloud then you can apply this flag to the file when your app is run for the first time. This code snippet should also work with Appmethod. Here is the code snippet:
uses iOSapi.Foundation;

function SetBackupFlag(AFileName: string; ABackup: boolean): boolean;
var
URL : NSUrl;
Err : PPointer;
begin
URL := TNSURL.Wrap(TNSURL.OCClass.fileURLWithPath(NSStr(AFileName)));
result := URL.setResourceValue(TNSNumber.OCClass.numberWithBool(not ABackup), NSStr('NSURLIsExcludedFromBackupKey'), err) and (err = nil);
end;

Head over and check out the full forum thread in German about the backup flag code for Delphi Firemonkey on IOS.



Have Delphi Firemonkey questions? Ask and get answers on StackOverflow.

Related posts
AndroidComponentDelphiDemoFiremonkeyIOSLinuxOSXShowcaseWindows

Experience ChatGPT As A Native Cross-Platform Firemonkey Application

DelphiLibraryWindows

Run Large Language Models Entirely On The GPU With Delphi And Vulkan

Code SnippetDelphiDemoLibraryWindows

Add Real-Time AI Voice Conversations To Windows Applications

ComponentDelphiDemoLibraryWindows

Give AI Models Eyes, Ears, And Real-World Capabilities

Sign up for our Newsletter and
stay informed
[mailpoet_form id="1"]

1 Comment

Leave a Reply