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
DelphiDemoFiremonkeyLibraryWindows

Bring OpenAI, Local LLMs, And AI Assistants To FMX Apps

DelphiFiremonkeyLibrary

DelphiGemini Brings Native Google Gemini AI Integration To Delphi

DelphiFiremonkeyLibraryWindows

MakerAI Brings Enterprise-Grade AI Orchestration to Delphi

DelphiIDEWindows

Delphi AI Developer Integrates OpenAI, Gemini, Groq, and Ollama into RAD Studio

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

1 Comment

Leave a Reply