Welcome to the Mythicsoft Q&A site for:

- Agent Ransack
- FileLocator Lite
- FileLocator Pro

Please feel free to ask any questions on these products or even answer other community member questions.

Useful Links:

- Contact Us
- Help Manuals
- Mythicsoft Home
0 votes

Currently if I export a search in Tab format not all the columns in the File List (e.g. type and created date) are exported. How do I export those additional columns?

by (715 points)

1 Answer

0 votes

FileLocator Pro 7 (or higher)

The File List Report in the Reports tab contains all those columns. You can easily export the report in a number of different formats.

File List report columns

FileLocator Pro 6.5 or lower

Using a custom format you can export all the columns.

Save the following 'transform' to a file and then specify it during the export, in the Custom (XSLT) field:

<?xml version="1.0"?>
<!-- Tab separated Transform
    Copyright (C) Mythicsoft Ltd 2012. All rights reserved.
    
    Produces output that contains the path, file name, file size, created, last accessed, last modified date, hit count
    separated by the tab (0x09) character, with each file on a new line.
    -->

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
			xmlns:rslt="http://www.mythicsoft.com/FileLocator_16Aug2005"
           version="1.0">

  <xsl:output method="text"/>

  <xsl:template match="/">
    <xsl:apply-templates select="//rslt:file"/>
  </xsl:template>

  <xsl:template match="rslt:file">
    <xsl:value-of select="rslt:path"/>
    <xsl:text>	</xsl:text>
    <xsl:value-of select="rslt:name"/>
    <xsl:text>	</xsl:text>
    <xsl:value-of select="rslt:size"/>
    <xsl:text>	</xsl:text>
    <xsl:value-of select="rslt:type"/>
    <xsl:text>	</xsl:text>
    <xsl:value-of select="rslt:modified"/>
    <xsl:text>	</xsl:text>
    <xsl:value-of select="rslt:lastaccess"/>
    <xsl:text>	</xsl:text>
    <xsl:value-of select="rslt:created"/>
    <xsl:text>	</xsl:text>
    <xsl:value-of select="rslt:contents/@rslt:totalhitcount"/>
    <xsl:text>	</xsl:text>
    <xsl:text>

</xsl:text>

  </xsl:template>

</xsl:stylesheet>
by (30.1k points)
...