.plist File Extension
File Type Mac OS X Property List File
Developer | Apple |
Category | Settings Files |
File Format | N/A |
PLIST file type
A PLIST file is a settings file, also known as a "properties file," used by macOS applications. It contains properties and configuration settings for various programs. PLIST files are formatted in XML and based on Apple's Core Foundation DTD.
PLIST files can be saved in a text or a binary format. The text-based documents and can be edited with a text editor. However, they typically should not be edited by the user, since they are modified by their respective programs as needed.
Property list files included with applications can be created and edited by the developer using Apple's Property List Editor, which is included with Apple Developer Tools. They can also be opened and edited using a third-party PLIST editing program.
NOTE: You can convert PLIST files between XML and binary formats using the plutil command line tool:
- Binary to XML: plutil -convert xml1 file.plist
- XML to Binary: plutil -convert binary1 file.plist
Info.plist - The primary property list for Mac OS X applications, located in the /Contents/ directory of an .APP bundle. To view this file, right-click an application file, select "Show Package Contents," and open the Contents folder.