decode_binary_plist | R Documentation |
Decode binary plist data
decode_binary_plist(x)
x |
A raw vector |
Some of the databases in the iOS backups contain columns with binary data that appear to be binary plist objects. This function can be used to decode the raw data into an proper R object.
The data stored in the plist. Dictionaries are converted to named lists, arrays are converted to lists, and other objects are returned as their equivalent atomic types
https://en.wikipedia.org/wiki/Property_list
http://fileformats.archiveteam.org/wiki/Property_List/Binary
https://github.com/google/binplist/
example <- system.file("extdata", "example.bplist", package = "myphone") bytes <- readBin(example, "raw", n=file.size(example)) decode_binary_plist(bytes)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.