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:
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
2010-07-23 08:33:27