How is the Xoom Files Info named query defined?

The Xoom Files Info named query is located in XoomCustom.xml (typically here: C:\Program Files (x86)\Zany Ants\Xoom and is therefore customisable. It is defined as follows:

<xpi:query name="Xoom Files Info">
  <Files>
    <File base-directory="? ${Xoom.InstallDirectory}" recursive="true" exclude-path="/XoomLog;/XoomTemp;/XoomTrace"/>
    <File base-directory="? ${Product.W6.Xoom.PluginDirectory}" recursive="true" exclude-path="/XoomTrace"/>
  </Files>
</xpi:query>
Each <File> element instructs Xoom to retrieve information on files. The <File> element takes the following attributes:

So, the first <File> element specifies that Xoom should retrieve information on all files from C:\Program Files (x86)\Zany Ants\Xoom and recursively from sub-folders, with the exception of files contained in the XoomLog, XoomTemp, and XoomTrace directories.

The second <File> element specifies that Xoom should retrieve information on all files from C:\Program Files (x86)\Zany Ants\Xoom W6 and recursively from its subfolders, with the exception of files in the directory XoomTrace.