tags:

views:

28

answers:

2

I have a to convert some 1000 xml files from XML to PLIST format(such as and . Is there already existing tool/application or algorithm available?

A: 

What about this one?

http://iappcat.com/plist/bin2xml

Leniel Macaferi
A: 

Do you want to convert from within C#? If this is not the case, there is a tool called plutil available since Mac OS X 10.2:

plutil -convert xml1 some_file.plist

plutil can be used to check the syntax of property list files, or convert a plist file from one format to another.

The MYYN