#hs.plist
Read and write Property List files
#API Overview
Functions - API calls offered directly by the extension
#API Documentation
#Functions
Signature | hs.plist.read(filepath) -> table |
Type | Function |
Description | Loads a Property List file |
Parameters |
|
Returns |
|
Notes | None |
Examples | None |
Source | extensions/plist/libplist.m line 4 |
Signature | hs.plist.readString(value, [binary]) -> table | nil |
Type | Function |
Description | Interprets a property list file within a string into a table. |
Parameters |
|
Returns |
|
Notes | None |
Examples | None |
Source | extensions/plist/libplist.m line 23 |
Signature | hs.plist.write(filepath, data[, binary]) -> boolean |
Type | Function |
Description | Writes a Property List file |
Parameters |
|
Returns |
|
Notes |
|
Examples | None |
Source | extensions/plist/libplist.m line 100 |
Signature | hs.plist.writeString(data, [binary]) -> string | nil |
Type | Function |
Description | Interprets a property list file within a string into a table. |
Parameters |
|
Returns |
|
Notes | None |
Examples | None |
Source | extensions/plist/libplist.m line 62 |