2015-04-09 00:41:54 +00:00
|
|
|
table_name("extended_attributes")
|
|
|
|
description("Get the extended attributes for files (similar to Windows ADS)")
|
|
|
|
schema([
|
|
|
|
Column("path", TEXT, "Absolute file path", required=True),
|
|
|
|
Column("directory", TEXT, "Directory of file(s)", required=True),
|
|
|
|
Column("key", TEXT, "Name of the value generated from the extended attribute"),
|
|
|
|
Column("value", TEXT, "The parsed information from the attribute"),
|
2015-04-11 22:57:12 +00:00
|
|
|
Column("base64", INTEGER, "1 if the value is base64 encoded else 0"),
|
2015-04-09 00:41:54 +00:00
|
|
|
])
|
|
|
|
implementation("extended_attributes@genXattr")
|