Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Exist any delphi class to parse .plist osx files

I'm looking if exist a delphi class to parse plist osx files or I must just parse these files like a normal XML file?

like image 892
Salvador Avatar asked Nov 04 '22 06:11

Salvador


1 Answers

Here is my suggestion:

  • Address the eventual binary plist format to XML plist conversion.
  • Parse the XML (plist) the usual way.

As a starting point, I recommend the excellent work of Alexey Dolgopolov done in pascal: BPlis2Xml.

https://bitbucket.org/alexeydl/develnotes/downloads/bpist2xml.zip

I wish you good luck.

Last edit:

Another c first hand interesting resource from Apple Inc is available here.

like image 108
menjaraz Avatar answered Nov 15 '22 04:11

menjaraz