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.

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>