This content has been marked as final.
Show 1 reply
-
1. Re: Where is stored the Folder label registry location?
Pedro Marques Aug 1, 2014 4:07 AM (in response to Pedro Marques)Found it.
Its an hidden xml File created from Bridge when I use labels or ratings on children folders.
It is called ".BridgeLabelsAndRatings"
to get it from bridge, just try to use this
Folder([myPath]).getFiles("*.BridgeLabelsAndRatings"); // the name works like a long extension file (the dot in the beginning is important)
and this is an example.
<?xml version='1.0' encoding='UTF-8' standalone='yes' ?>
<bridgedata version='1'>
<labels version='1'>
<item key='_d_10772009' label='Select'/>
</labels>
<ratings version='1'>
<item key='_d_10772012' rating='1'/>
</ratings>
</bridgedata>
This is updated from others computer over the same local folder network only when cache folder is recreated.

